iOS Code Snippet

设置全局UINavigationBar和UITabBar风格

1
2
3
4
5
[[UINavigationBar appearance] setBarStyle:UIBarStyleBlack];
[[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:10/255.0f green:10/255.0f blue:10/255.0f alpha:0]];
[[UITabBar appearance] setBarTintColor:[UIColor colorWithRed:10/255.0 green:10/255.0 blue:10/255.0 alpha:0]];
[[UITabBar appearance] setBarStyle:UIBarStyleDefault];