iOS自定义NavigationBar
时间:2014-06-06 15:48:39
收藏:0
阅读:283
?
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;? |
评论(0)