Hi,
I need to open programatically a certain tab in my tab bar.
I tried calling the following method from my UITabBarController:
self.selectedViewController = myVController;
Which doesn't work.
What is the right way to open a tab?
Thank you.
Update: I tried the following code:
self.selectedViewController = [ [self viewControllers] objectAtIndex: 0];
which opens me a desirable tab(it is being selected), but the active view is not being updated.