i have a tabbar controller with 5 tabs.In my 3rd tab i am clicking a button and navigate to first tab(same time i am selection the Tab button at index0 using the below code)
self.tabBarController.selectedViewController = [self.tabBarController.viewControllers objectAtIndex:0];
i have tried below code also
[appdelegate.tabBarController setSelectedIndex:0];
My problem is...On clicking the 3rd Tab button again,there i can see the view for First tab(but if i click again the original view for third tab comes) What may be the issue,and how can i Fix that ?
self.tabBarController.selectedIndex = 0– arthan.v Dec 7 '12 at 10:59