iOS-UIView中使用NavgationController进行跳转

ApplyViewController *applyCtr = [[ApplyViewController alloc]init];
UINavigationController *navController = ((BaseViewController *)self.superview.nextResponder).navigationController;
applyCtr.hidesBottomBarWhenPushed = YES;
[navController pushViewController:applyCtr animated:YES];

你可能感兴趣的:(iOS-UIView中使用NavgationController进行跳转)