一,效果圖。 二,代碼。 ...
一,效果圖。
二,代碼。
- (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;
}