我正在viewController
通过以下方式展示新内容navigationController
:
PTAgencyClients *pushedController = [[PTAgencyClients alloc] initWithNibName:@"PTAgencyClients"
bundle:nil
agency:agency];
[[self navigationController] pushViewController:pushedController
animated:YES];
从这个PTAgencyClients
我试图弹出这个viewController
:
[[self navigationController] popViewControllerAnimated:YES];
不知何故,当我弹出它时,它没有这种从左到右的轻微动画。我做了一点实验,我看到了强大的过渡,在其他情况下,之前的过渡viewController
从 this 开始PTAgencyClients
。什么可以引发这种行为?
更新
它发生在设备和模拟器上。