码迷,mamicode.com
首页 > 移动开发 > 详细

ios-Nav右上角按钮

时间:2014-09-22 14:00:52      阅读:1068      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   io   os   使用   ar   

右上角的设置按钮

bubuko.com,布布扣
1 //******************  右上角保存按钮  ******************
2         UIButton *rightBtn = [UIButton buttonWithType:UIButtonTypeCustom];
3         [rightBtn setBackgroundImage:[UIImage imageNamed:@"xiesixin.png"] forState:UIControlStateNormal];
4         [rightBtn setFrame:CGRectMake(0, 0, 50, 30)];
5         [rightBtn setTitle:@"保存" forState:UIControlStateNormal];
6         [rightBtn addTarget:self action:@selector(rightBtnClick) forControlEvents:UIControlEventTouchUpInside ];
7         UIBarButtonItem *searchButton = [[UIBarButtonItem alloc]initWithCustomView:rightBtn];
8         self.navigationItem.rightBarButtonItem = searchButton;
9         self.tabBarController.hidesBottomBarWhenPushed = YES;
View Code

ms用的不是自定义NavgationController,所以需要使用到 UIBarButtonItem 来设置。

ios-Nav右上角按钮

标签:des   style   blog   http   color   io   os   使用   ar   

原文地址:http://www.cnblogs.com/xm5mao/p/3985693.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!