解除模态后,iOS Navigation Controller为null

时间:2015-03-10 14:37:04

标签: ios objective-c navigationcontroller

我有一个照片选择流程:

VC1推送到VC​​2,呈现模态,关闭模式,推送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。

0 个答案:

没有答案