我通过viewController
提出新的navigationController
:
PTAgencyClients *pushedController = [[PTAgencyClients alloc] initWithNibName:@"PTAgencyClients"
bundle:nil
agency:agency];
[[self navigationController] pushViewController:pushedController
animated:YES];
并从此PTAgencyClients
我尝试使用:{/ p>弹出此viewController
[[self navigationController] popViewControllerAnimated:YES];
不知何故,当我弹出它时,它没有这个从左到右的轻微动画。我进行了一些实验,我看到了强大的过渡,在其他情况下,我从viewController
的顶部过渡了PTAgencyClients
。什么能引发这种行为?
的更新
它在设备和模拟器上都会发生。