In my application i have Tab bar Controller. I want to change default color of Tab bar image when it get selected i.e. default blue color.
Please note: I do not want to change background color of Tab bar but only the color of selected tabbar item when it selected from default blue color.
Here is my code:
NSArray *tabObjects=[NSArray arrayWithObjects:nav,video,about, nil];
tabView=[[UITabBarController alloc] init];
tabView.viewControllers=tabObjects;
I have seen many questions here and searched internet as well. Some people suggest private API’s that i am not interested. Some people say to put custom image when tab get selected.
Please suggest me proper way to do so.
Thanks in advance
Seems like you need
Note: Works only with iOS >=5