我有一个UITabBarController,它有两个不同的视图可以切换。我想要做的是在View1中单击一个按钮直接切换到View2。然后在View2中,如果他们单击一个按钮,则将它们切换到View1。
当它们点击tabBarController时,它在View1和View2之间传输,但我正在尝试在事件发生时为它们执行切换。
有没有办法通过在我的UITabBarController上调用方法来实现这个目的?
@interface CalcAppDelegate : NSObject <UIApplicationDelegate> {
UITabBarController *tabBarController;
}
答案 0 :(得分:1)
只需在任何您想要的地方做,
CalcAppDelegate *appDel = (CalcAppDelegate *)[[UIApplication sharedApplication] delegate];
[appDel.tabBarController setSelectedIndex:theIndexOfTabItem];
希望这有帮助。
谢谢,
Madhup