Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I change the tab bar selection color instead of blue?

Tags:

ios

iphone

ipad

Normally tab bar selection color is blue in iPhone. Instead of that I want to change the color as brown. How can I change the tabbar selection color? Shall I need to create custom tabbar controller?

like image 599
Subramanian P Avatar asked Dec 12 '22 02:12

Subramanian P


2 Answers

In case you want to use an image:

[self.tabBar setSelectionIndicatorImage:[UIImage imageNamed:@"selected_tab.png"]];

In case you want to use a color:

[self.tabBar setSelectedImageTintColor:[UIColor whiteColor]];

like image 176
Jasper Avatar answered Dec 28 '22 22:12

Jasper


yes if you create customTabBar controller and switch background image of TabBar control then its work like system TabBar...you just create 5 different images and set it with selected tab on your TabBar Delegate method,here if you use graphics image then its also work.....means you use this tabbar globally in your many application :)

like image 35
Paras Joshi Avatar answered Dec 28 '22 22:12

Paras Joshi