我有一个 UIViewController,在它上面 - 我使用 presentViewController 来呈现一个新窗口:
controller.view.frame = source;
[self presentViewController:controller animated:NO completion:nil];
[UIView animateWithDuration:ANIMATION_NORMAL_DURATION animations:^{
controller.view.frame = target;
}completion:^(BOOL finished) {
}];
当我这样做时 - 父控制器(自身)在新控制器(控制器)出现之前消失。它使它变得丑陋。
有没有更好的方法来实现它?(我不在那些 ViewContollers 中使用 NavigationControler)
谢谢。