我想删除标签栏和导航栏项目上的颜色,这样我使用的图标就会有他们拥有的颜色。有可能解决这个问题吗?
答案 0 :(得分:0)
我不确定它会起作用,但您可以尝试imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal
。标签栏示例:
UIImage *your_image; // do not forget to initialiuze it!
your_view_controller.tabBarItem.image = [your_image imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
答案 1 :(得分:0)
你也许可以试试:
self.tabBarController.tabBar.tintColor = [UIColor clearColor];
self.navigationController.navigationBar.tintColor = [UIColor clearColor];