Hi all,
I am working on app, in which I have 2 switch between tabs in tabbar controller. Is it possible in iphone. Please help me.
Thanks
Hi all,
I am working on app, in which I have 2 switch between tabs in tabbar controller. Is it possible in iphone. Please help me.
Thanks
What you're looking for is called "selectedIndex".
If you wanted to switch to your second TabBar, you'd call
self.tabBarController.selectedIndex = 1;
Your tabbars start from index 0.