Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Let's say I have a UIButton in one tab view in my iPhone app, and I want to have it open a different tab in the tab bar of the TabBarController. How would I write the code to do this?

I'm assuming I unload the existing view and load a specific tab view, but I'm not sure how to write the code exactly.

Thanks.

share|improve this question

3 Answers

up vote 54 down vote accepted

Try this:

self.tabBarController.selectedIndex = 1;

or

[self.tabBarController setSelectedIndex:1];
share|improve this answer
Perfect, thanks. Everyone gave the right answer though, so upvotes for all! – rottendevice Mar 24 '11 at 16:39
2  
I have an app in which one tab is "Chat" and another is "Profile". If the profile is not setup, tapping the "Chat" tab shows a dialog informing the user that the profile needs to be setup first. And focus needs to move to the "Profile" tab. For this to work, the solution above has to be inserted in viewDidAppear, it won't work anywhere else. Otherwise the tab gets selected but the associated view doesn't appear. In short, if you wish to change the focus to another tab from a tab click event - it has to happen in the viewDidAppear event of the controller attached to that tab. HTH. – alan-p Feb 20 '12 at 9:32
2  
Note that, if the index maps to a tab within the More view controller (should you have more than five tabs), this will not work. In that case, use -setSelectedViewController:. – Joe D'Andrea Mar 2 '12 at 15:43

You can simply just set the selectedIndex property on the UITabBarController to the appropriate index and the view will be changed just like the user tapped the tab button.

share|improve this answer
2  
With the one small difference being that the delegate method that can inform of the user switching tabs is not called. – Brad Smith May 13 '11 at 17:58
1  
Setting selectedIndex also doesn't work for me with indexes > 4, but selectedViewController does. – bugloaf Aug 14 '12 at 16:33

Note that the tabs are indexed starting from 0. So the following code snippet works

tabBarController = [[UITabBarController alloc] init];
.
.
.
tabBarController.selectedViewController = [tabBarController.viewControllers objectAtIndex:4];

goes to the fifth tab in the bar.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.