当前位置: 代码迷 >> Iphone >> 导航条的题目
  详细解决方案

导航条的题目

热度:89   发布时间:2016-04-25 05:42:40.0
导航条的标题

 

效果图:

 

 

代码:

- (void)viewDidLoad {    [super viewDidLoad];    // Do any additional setup after loading the view, typically from a nib.        [self.view addSubview:[self getTileLabel:@"你好!"]];}//导航条的标题-(UILabel *)getTileLabel:(NSString *)title{        UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(20, 100 , 200, 44)];    titleLabel.backgroundColor = [UIColor redColor];    titleLabel.font=[UIFont boldSystemFontOfSize:18];    titleLabel.textColor=[UIColor greenColor];    titleLabel.textAlignment = NSTextAlignmentCenter;    titleLabel.text=title;    return titleLabel;}

 

  相关解决方案