UINavigationController *navigation = [[UINavigationController alloc] initWithRootViewController:viewController];
navigation.modalPresentationStyle = UIModalPresentationCustom;
navigation.transitioningDelegate = self.transitionAnimator;
[self presentViewController:navigation animated:YES completion:nil];
Warning: Attempt to present <UINavigationController: 0x1558c390> on <UINavigationController: 0x1553a550> which is already presenting <UINavigationController: 0x15580ae0>
不能显示controller
UINavigationController *navigation = [[UINavigationController alloc] initWithRootViewController:viewController];
navigation.modalPresentationStyle = UIModalPresentationCustom;
navigation.transitioningDelegate = self.transitionAnimator;
[self presentViewController:navigation animated:YES completion:nil];
Warning: Attempt to present <UINavigationController: 0x1558c390> on <UINavigationController: 0x1553a550> which is already presenting <UINavigationController: 0x15580ae0>
不能显示controller