按按钮我想转到最后一个标签栏项目:这是代码:
在我的AppDelegate中:
self.tabBarController.viewControllers = @[navController1, navController2, navController3, navController4];
self.window.rootViewController = self.tabBarController;
在我的ViewController中,这里是操作:
- (IBAction)registrationFormBtnPressed:(id)sender {
self.tabBarController.selectedIndex = 2;
RegisterViewController *rigstr = [[RegisterViewController alloc]initWithNibName:@"RegisterViewController" bundle:nil];
// [self.navigationController pushViewController:rigstr animated:YES];
}
RegisterViewController是我的TabBarController
我想从第一个 TabBar 中单击 uibutton,它必须转到最后一个 (4) 选项卡栏
怎么做,请帮帮我
我不明白如何直接转到最后一个 TabBar
先感谢您
请帮帮我
谢谢 Gusy 我已经解决了我的问题,但我还想补充一件事
它转到选定的索引,但是当我转到选定的索引时如何选择标签栏项目?