我试图从下到上解雇一个视图控制器,而不是标准的从右到左过渡。这是可能吗?这是我到目前为止的代码:
CGRect screenRect = [[UIScreen mainScreen] applicationFrame];
CGRect endFrame = self.view.frame;
endFrame.origin.y = screenRect.origin.y - screenRect.size.height;
UIView *aView = [[self.view retain] autorelease];
[self.view.window addSubview:aView];
aView.frame = CGRectMake(0, 0, 320, 460);
[UIView animateWithDuration:0.5
animations:^{
[UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
aView.frame = endFrame;
}
completion:^(BOOL finished) {
[self dismissModalViewControllerAnimated:NO];
[aView removeFromSuperview];
}
];
确实会导致过渡;但是以前的视图控制器要等到动画之后才会出现,因为我要等到动画完成后才能解雇...有什么想法吗?
最佳答案
好的,当您呈现ModalViewController时,它会自动将视图隐藏在后面。您不需要做的是将其删除,而是将视图控制器视图添加为主视图的子视图。然后,您只需在屏幕外为视图设置动画,然后在竞赛处理程序中删除FromFromSuperview。