首页 > 其他 > 详细

导航栏自定义一个UIBarButtonItem最快的方式

时间:2015-07-27 01:49:35      阅读:158      评论:0      收藏:0      [点我收藏+]
1 + (UIBarButtonItem *)itemWithIcon:(NSString *)icon highIcon:(NSString *)highIcon target:(id)target action:(SEL)action
2 {
3     UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
4     [button setBackgroundImage:[UIImage imageWithName:icon] forState:UIControlStateNormal];
5     [button setBackgroundImage:[UIImage imageWithName:highIcon] forState:UIControlStateHighlighted];
6     button.frame = (CGRect){CGPointZero, button.currentBackgroundImage.size};
7     [button addTarget:target action:action forControlEvents:UIControlEventTouchUpInside];
8     return [[UIBarButtonItem alloc] initWithCustomView:button];
9 }

 

导航栏自定义一个UIBarButtonItem最快的方式

原文:http://www.cnblogs.com/qq449832375/p/4679061.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!