I like to have a custom selected image when a user selects an item on the tab bar, by default it selects as blue like but would like to have a green color instead. something like below any thoughts?

|
I like to have a custom selected image when a user selects an item on the tab bar, by default it selects as blue like but would like to have a green color instead. something like below any thoughts?
|
|||
|
|
|
Just found my solution. Basically, I subclassed UITabItem and set this in the navigation controller:
Here's what the CustomTabBarItem class looks like:
implementation:
|
|||||||||||
|
|
In iOS 6 I have change the selected tabbatitem image like - in tabbar controller delegate method
through this you can change your image. Or you can use directly in your view controllers init(or ViewWillAppear) method, like
i hope this'll help you. |
|||
|
|
Just add some custom views (using insertSubview:atIndex:) when the UITabBarController-delegate-methods are called. Example:
You can try changing |
|||
|
|
This is not officially supported in the SDK. You may be able to probe and adjust the tab's views at runtime, but you risk a rejection from Apple. Edit: For completeness, I should mention that your other option is to roll your own UITabBar. |
||||
|
|
|
For iOS5 and upwards, you can just do this:
|
|||
|
|
|
I believe you can now do this with :
|
||||
|
In AppDelegate.m
This will give you a red color, change the color with the one you wish whiteColor, blueColor etc.. |
|||
|
|
|
When using storyboards you can simply select your TabBarController's TabBar and then change the Image Tint in the Identity Inspector. This should also work with XIBs. |
|||
|
|
|
In my UITabBarController's
|
|||
|
|