ios标签栏图标没有显示正确 - 将非平面图标添加到ios7标签栏和工具栏

时间:2014-06-25 10:15:27

标签: ios toolbar tabbar

我想在我的uitabbar和uitoolbar中显示一些类似下方图标的图标:

enter image description here

但是当我向我的应用程序显示此图标时,它看起来如下所示:

enter image description here

我认为这是因为ios渲染了标签栏和工具栏的图标。

有没有办法可以解决这个问题?

1 个答案:

答案 0 :(得分:0)

在UITabBarItem上设置图像时,将其传递为:

UIImage *tabBarItemImage = [originalImage imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];

这告诉iOS 7不要将图像视为模板图像。

有关详细信息,请参阅UIImage class reference