Changing Tint / Background color of UITabBar

iOS 5 has added some new appearance methods for customising the look of most UI elements. You can target every instance of a UITabBar in your app by using the appearance proxy. For iOS 5 + 6: [[UITabBar appearance] setTintColor:[UIColor redColor]]; For iOS 7 and above, please use the following: [[UITabBar appearance] setBarTintColor:[UIColor redColor]]; Using … Read more