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
I just came across this question and it's actually really simple:
tabBarController.selectedViewController = viewController;
This is somewhat similar to HG's answer, but setting the selected view controller to nil is unnecessary.