如何直接打开另一个UITabBar?

时间:2013-05-20 04:56:11

标签: cocoa-touch tabbar ibaction

按按钮我想转到最后一个标签栏项目: 这是代码:

在我的 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,它必须转到Last(4)标签栏

怎么做请请pelase帮帮我

我不明白如何直接进入最后一个TabBar

提前谢谢

请帮帮我

感谢Gusy我已经解决了我的问题,但还有一件事我想补充

它会转到所选索引但是当我转到所选索引时如何选择标签栏项目?

0 个答案:

没有答案