在自定义的view中有点击事件需要push到下一个控制器,但是在view中不能用下面这个方法
[self.navigationController pushViewController:nextVc animated:YES];
正确的push姿势是这样的
//取出根视图控制器
UITabBarController *tabBarVc = (UITabBarController *)[UIApplication sharedApplication].keyWindow.rootViewController;
//取出当前选中的导航控制器
UINavigationController *Nav = [tabBarVc selectedViewController];
[Nav pushViewController:nextVc animated:YES];
网友评论