Hi, I wanted this kind of Tab Selection effect. Instead of Black Background it should be blue one.Is it possible that when i select any tab it should come up with blue background.Please guide me what should i do?I have tried so much but not getting any proper solution.Please suggest me what should i do?
Asked
Active
Viewed 1.3k times
1 Answers
9
use the tintColor:
property of UITabBar:
myTabBarController.tabBar.tintColor = [UIColor blueColor];
note this only works on iOS5.
EDIT:
oops! sorry i misunderstood your question. I thought you meant the background color of the whole tab bar.
For that you can add an image for background of the selection using selectionIndicatorImage
property:
myTabBarController.tabBar.selectionIndicatorImage = [UIImage imageNamed:@"myImage.png"];
hope this helps

KDaker
- 5,899
- 5
- 31
- 44
-
1@KDaker- what if I want to change the background icon of the whole tab item at selection? – Jamal Zafar Jul 27 '12 at 06:37