标签:c style class blog code java
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
标签:c style class blog code java
原文地址:http://www.cnblogs.com/jz319/p/3766496.html