1
A
答えて
2
UITabBarControllerにselectedIndex
を設定するだけです。
UITabBarController *tabbarController = ...
...
tabbarController.selectedIndex = 1; //Tabs indexed from 0, left to right
http://stackoverflow.com/questions/1370813/programatically-switch-tabs-in-iphone – Rayfleck