UIBarButtonItem setTintColor doesn't work on iOS7

对着背影说爱祢 提交于 2019-12-01 20:56:15
null

In iOS7 you if you need to change the navigationBar buttons color, you must set tintColor for the navgationBar not the for specific barButton any more.

navigationController.navigationBar.tintColor = [UIColor orangeColor];

Edit: this works in iOS7, you need to do the check:

float systemVersion = [[[UIDevice currentDevice] systemVersion] floatValue];
if (systemVersion >= 7.0)
{
    navigationController.navigationBar.tintColor = [UIColor orangeColor]
}

I couldn't get @Chris's method to work (iOS 8 like @Adama says).

My use case is that I want to set all UIToolbar & UINavigationBar buttons to a default colour. So using the UIAppearance API:

UIBarButtonItem.appearance().setTitleTextAttributes([NSForegroundColorAttributeName : UIColor.redColor()], forState: .Normal)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!