当前位置:   article > 正文

ios设置导航栏属性_导航栏属性 ios

导航栏属性 ios

在MJAppDelegate类中的BOOL)application:(UIApplication )application didFinishLaunchingWithOptions:(NSDictionary )launchOptions 方法设置
// 设置状态栏的样式

application.statusBarStyle = UIStatusBarStyleLightContent;

application.statusBarHidden = NO;
  • 1
  • 2
  • 3

控制器设置title

// 设置标题文字颜色
NSMutableDictionary *attrs = [NSMutableDictionary dictionary];
attrs[NSForegroundColorAttributeName] = [UIColor whiteColor];
attrs[NSFontAttributeName] = [UIFont systemFontOfSize:16];
[navBar setTitleTextAttributes:attrs];
  • 1
  • 2
  • 3
  • 4
  • 5

判断当前ios系统版本大于7.0

 ([[UIDevice currentDevice].systemVersion doubleValue] >= 7.0)
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/125001
推荐阅读
相关标签
  

闽ICP备14008679号