iOS自定义NavigationBar

?
1
2
3
4
5
6
7
8
9
10
11
if (IS_IOS7()) {
            
           //  NavigationBar 颜色
           [[UINavigationBar appearance] setBarTintColor:HexColor(0xffffff)];
            
       } else {
            
           self.navigationController.navigationBar.tintColor = HexColor(0xffffff);
           //  状态栏颜色
           [[UIApplication sharedApplication] setStatusBarStyle: UIStatusBarStyleBlackOpaque animated: YES];
       }?
?
设置按钮
?
1
2
UIBarButtonItem *rightItem = [[UIBarButtonItem alloc] initWithTitle: @"XXXX" style: UIBarButtonItemStylePlain target: self action: @selector(XXXX)];
   self.navigationItem.rightBarButtonItem = rightItem;?
?

iOS自定义NavigationBar,布布扣,bubuko.com

iOS自定义NavigationBar

上一篇:证书过期-->app审核提示90034证书错误


下一篇:Linux中Bash发现重大安全漏洞修改方法