tags:

views:

73

answers:

1

I have an app that has a tabbar at the bottom. When I select a tab the press is caught by:

didSelectItem:(UITabBarItem *)item

So, everything works great except that the tab stays blue until I hit another tab which stays blue until I hit another tab, etc....

is there some code I can put in my switch/case code that turns the blue highlight back off?

A: 

What you describe is the default behavior for UITabBars. If you really want to change this default user-recognized behavior, I suggest going with a Custom toolbar instead. Apple has done a great job with their UI elements by providing developers with the elements that iPhone users already know and understand. It is strongly advised that you leave the UITabBar functionality as is.

coneybeare
I'm doing a "NEXT" on the bar. After it goes to the "next" it seems silly to have the button still on.
Iron Mike
Looking through other apps I see what you mean. I'll leave it.
Iron Mike