iOS 从tabBarController的一个item,跳转进
2018-12-05 本文已影响72人
绘色
UITabBarController *tabbarContro = ((AppDelegate*)APPDELEGATE).tabBarController;
如果只是跳转到另一个的首页,到这里就可以了
tabbarContro.selectedIndex=4;
跳转到其他页面,就是拿到另一个item的导航器进行操作
UINavigationController *nav = (UINavigationController *)tabbarContro.viewControllers[4];
HSPersonalInfoViewController *control = [[HSPersonalInfoViewController alloc]init];
[nav pushViewController:control animated:YES];