码迷,mamicode.com
首页 > 其他好文 > 详细

自定义navigationItem与button的几种状态

时间:2015-05-24 20:24:22      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

self.navigationItem.rightBarButtonItem = [UIBarButtonItem alloc] initWithCustomView:button];

前提要创建一个UIButton *button;button的内容(图片、颜色等)可以自定义。

这样就实现了自定义navigationItem的rightBarButtonItem或者leftBarButtonItem的自定义了。

 

button的状态设置参考:

[button setTitle:@"按钮" forState:UIControlStateNormal];

[button setTitleColor:[UIColor redColor] forState:UIcontrolStateNormal];

[button setTitleColor:[UIColor orangeColor forState:UIControlStateHighLighted];

[button setTitleColor:[UIColor lightGrayColor forState:UIControlStateDisable];

 

自定义完实现按钮状态可以通过button的enable属性来设置,例如:self.navigationItem.rightBarButtonItem.enable = NO;为不可用状态。enable设置为YES为可用状态。

自定义navigationItem与button的几种状态

标签:

原文地址:http://www.cnblogs.com/JackLiao/p/4526308.html

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