iOS 从一个无导航栏push到有导航栏
2018-03-15 本文已影响25人
J_HX
A B C 视图控制器
A -> UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:B];
[self presentViewController:nav animated:YES completion:^{
}];
B -> 隐藏导航栏 B->push-C