I\'m trying to select no tabs at all in my application. At first the first tab is selected, but I\'d like to deselect it so no tabs at all would be selected.
Don\'t
You can deselect all tab bar items if you are using UITabBar instance without UITabBarController one.
In such case below code works well.
[tabBar setSelectedItem:nil];
If UITabBar is a part of UITabBarController then application will crash with exception:
'Directly modifying a tab bar managed by a tab bar controller is not allowed.'
In other words if you would like to get this worked you need to manage tabbar's routines manually without controller.