I have a situation to navigate from first tab item to second tab item by a button click in first tab. how can i do that ?
You can call -setSelectedIndex: in your button click handler.
This would select the 3rd tab.
[tabBarController setSelectedIndex: 2];
Please note that documentation is your friend: UITabBarController Class Reference
In addition you can try this:
[tabBarController setSelectedViewController:(UIViewController *)[tabBarController.viewControllers objectAtIndex: 2]];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With