我正在尝试以编程方式从底部进入一个模态视图动画,但是在对我设置了animation:YES的preventViewController的调用中,模态只是出现而不是动画。即使当我在模拟器中放慢动画时,它也会弹出。这是我的代码:
- (void)presentFromRootViewController:(UIViewController *)viewController {
UIViewController *modalController = [[UIViewController alloc] init];
[viewController presentViewController:modalController animated:YES completion:nil];
}
我希望它会滑入视图,相反,它会立即弹出视图。