专注收集记录技术开发学习笔记、技术难点、解决方案
网站信息搜索 >> 请输入关键词:
您当前的位置: 首页 > 图形/图像

UITabBarItem初始化详解及UIImage点染模式

发布时间:2011-06-27 19:22:18 文章来源:www.iduyao.cn 采编人员:星星草
UITabBarItem初始化详解及UIImage渲染模式

本文中讲的UITabBarItem初始化指的是用 initWithTitle进行初始化

NSArray *titlearray = [[NSArray alloc] initWithObjects:@"launcher_title_home",@"launcher_title_stats",@"launcher_title_help",@"launcher_title_settings", nil];

UITabBarItem *item = [[UITabBarItem alloc] initWithTitle:NSLocalizedStringFromTable([titlearray objectAtIndex:Id], @"Locatizable", nil) image:image1   selectedImage:image1];

如上述代码所示,参数image:的值为image1(不进行渲染)时,tabbaritem在未选中状态下为灰色

在没有指定

tabBar.tintColor的时候,选中的tabbaritem的图片显示为蓝色,否则显示的就是tabBar.tintColor指定的颜色。

那么如何让tabbaritem在未选中时显示图片本身的颜色呢?

这里就用到了渲染。

渲染之后的代码如下:

UITabBarItem *item = [[UITabBarItem alloc] initWithTitle:NSLocalizedStringFromTable([titlearray objectAtIndex:Id], @"Locatizable", nil) image:[image1 imageWithRenderingMode:UIImageRenderingModeAlwaysOriginalselectedImage:image1];

上述代码中的

image1 imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal就是让image1以原始颜色显示。


总共有3种渲染模式:

UIImageRenderingModeAlwaysOriginal

官方文档解释:Always draw the original image, without treating it as a template

(总是画出原始图像,而不把它当作模板来对待)


UIImageRenderingModeAlwaysTemplate

官方文档解释:Always draw the image as a template image, ignoring its color information.

(总是把图像作为模板图像,忽略了它的颜色信息。)


UIImageRenderingModeAutomatic

官方文档解释:Use the default rendering mode for the context where the image is used

(使用图像的上下文中使用的默认渲染模式)


通过测试可以得到,默认渲染模式为 UIImageRenderingModeAutomatic



本文所述,如有不准确的地方,欢迎留言指正,谢谢!


版权声明:本文为博主原创文章,未经博主允许不得转载。

友情提示:
信息收集于互联网,如果您发现错误或造成侵权,请及时通知本站更正或删除,具体联系方式见页面底部联系我们,谢谢。

其他相似内容:

热门推荐: