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

UITabBarItem的selectedImage

时间:2015-10-11 15:15:12      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:

TabBar使用频率很高的一个组件,TabBar的TabBarItem有两个属性一个是image(未选中图片),另一个是selectedImage(选中时图片)

技术分享

但是运行时发现,选中时的图片变成了蓝色的,但是实际上图片是红色的,看来系统的TabBar会对图片默认使用TintColor再进行渲染。

解决方法:

1.设置渲染色

self.tabBarController.tabBar.tintColor = [UIColor blackColor];

2.设置图片不进行渲染

self.tabBarItem.selectedImage = [[UIImage  imageNamed:@"XX"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

 

TabBarItem上标题颜色也可以修改

[self.tabBarItem setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor redColor],NSForegroundColorAttributeName, nil] forState:UIControlStateSelected];

UITabBarItem的selectedImage

标签:

原文地址:http://www.cnblogs.com/small-octopus/p/4869211.html

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