vote up 0 vote down star
1

I'm trying to programatically select/change the tab of the UITabViewController.

I tried doing it via:

self.tabBarController.selectedIndex = 2;

This looks to be the way that I should do it, but it doesn't work. I thought that maybe the self.tabBarController returns a read only object (I sorta remember reading that somewhere), but I'm not sure how to get it to work.

Any help is appreciated!

flag

66% accept rate

3 Answers

vote up 6 vote down check

Set selectedViewController:

self.tabBarController.selectedViewController = viewControllerYouWant;

For example,

self.tabBarController.selectedViewController 
    = [self.tabBarController.viewControllers objectAtIndex:2];
link|flag
vote up 0 vote down

I'm doing something like this:

[root setSelectedViewController: [root.historyController navController]];
link|flag
vote up 0 vote down

According to the docs, selectedIndex or selectedViewController are the properties you want and are both assignable.

The tabBarController property is readonly, but it returns an object that is editable.

So all your code looks right to me.

link|flag

Your Answer

Get an OpenID
or

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