我有一个照片选择流程:
VC1推送到VC2,呈现模态,关闭模式,推送VC3。
在驳回模态视图后,self.navigationController
null
模态视图:
[self dismissViewControllerAnimated:YES completion:^{
FBGalleryVC *vc = [[FBGalleryVC alloc] init];
[vc showVC3];
}];
触发VC2:
- (void)showVC3 {
NSLog(@"NavController=%@",self.navigationController);
VC3 *vc3 = [self.storyboard instantiateViewControllerWithIdentifier:@"VC3"];
[self.navigationController pushViewController:vc3 animated:YES];
}
我不清楚为什么导航控制器会被取消'或者返回为null。