문제

i have a problem, because since i did the last update of the SDK, my tint color for my tab bar don't run.... It stays blue tint, and not green.

I tried to do that in my viewdidload :

[[UITabBar appearance] setTintColor:[UIColor greenColor]];

But it's not running... Someone to help me please ?

도움이 되었습니까?

해결책

Appearance proxy API should be called before a view is loaded. Once viewDidLoad is called, it is already too late.

Move your appearance calls to the AppDelegate's applicationDidFinishLaunching:withOptions:.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top