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

IOS8 TabBarItem设置自定义图片问题

时间:2014-10-11 01:03:24      阅读:316      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   使用   ar   strong   sp   

1 //IOS8以前使用的是:
2 
3 UITabBarItem *photoItem = [[UITabBarItem alloc] initWithTitle:@"首页" image:[UIImage imageNamed:@"app2"] tag:0];
4 
5 photo.tabBarItem = photoItem;
6 
7 [photo.tabBarItem setFinishedSelectedImage:[UIImage imageNamed:@"app1"] withFinishedUnselectedImage:[UIImage imageNamed:@"app2"]];
8 
9 [photoItem release];
  •  查看API之后看到使用了新的API方法
1 //使用新的API方法来初始化tabBarItem
2 - (instancetype)initWithTitle:(NSString *)title image:(UIImage *)image selectedImage:(UIImage *)selectedImage
3 //同时对使用的UIImage设置一下UIImageRenderingMode,使用UIImageRenderingModeAlwaysOriginal
4 
5 //用例:
6 UIImage * normalImage = [[UIImage imageNamed:@"nor.png"]  imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
7 UIImage * selectImage = [[UIImage imageNamed:@"select.png"]  imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
8      
9 UITabBarItem * tabBarItem = [[UITabBarItem alloc]initWithTitle:@"" image:normalImage selectedImage:selectImage];

 

IOS8 TabBarItem设置自定义图片问题

标签:style   blog   color   io   os   使用   ar   strong   sp   

原文地址:http://www.cnblogs.com/DannyApple/p/4018078.html

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