ios导航栏自定义

2016-11-01  本文已影响0人  小小鸟想飞_123

在viewDidLoad函数里写上

//自定义导航栏颜色

[self.navigationController.navigationBar setBarTintColor:[UIColor colorWithRed:50/255.0 green:147/255.0 blue:209/255.0 alpha:1]];

//自定义导航栏背景图片

[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"bg_banner10.png"] forBarMetrics:UIBarMetricsDefault];

//修改导航栏标题字体大小和颜色

[self.navigationController.navigationBar setTitleTextAttributes:@{

NSFontAttributeName:[UIFont systemFontOfSize:19],

NSForegroundColorAttributeName:[UIColor whiteColor]

}];

上一篇 下一篇

猜你喜欢

热点阅读