我环顾四周,没找到我到底想要的东西。
有没有办法在推动视图控制器时获得翻转动画?
我读到你可以通过使用模态视图控制器来改变动画,但是AFAIK模态视图的动画是从下到上,这不是我想要的。有办法以某种方式获得翻转动画吗?
答案 0 :(得分:51)
这样的事情应该起作用
[UIView beginAnimations:@"animation" context:nil];
[self.navigationController pushViewController: yourviewcontroller animated:NO];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.navigationController.view cache:NO];
[UIView commitAnimations];
不要忘记在调用pushViewController
时将动画设置为NO答案 1 :(得分:15)
这也适用于iOS 4.0 and greater
[UIView transitionWithView:self.navigationController.view duration:0.8 options:UIViewAnimationOptionTransitionFlipFromLeft
animations:^(void) {
BOOL oldState = [UIView areAnimationsEnabled];
[UIView setAnimationsEnabled:NO];
[self.navigationController pushViewController:viewController animated:YES];
[UIView setAnimationsEnabled:oldState];
}
completion:nil];
答案 2 :(得分:5)
- (void)viewWillDisappear:(BOOL)animated {
[UIView beginAnimations:@"animation2" context:nil];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
[UIView setAnimationDuration: 0.7];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.navigationController.view cache:NO];
[UIView commitAnimations]; }
当按下工具栏中的后退按钮时,新视图控制器中的将使其以相同的方式向后翻(而不是向左滑动) - 确保在此处启用动画,例如,如果您使用自定义按钮弹出堆栈,使用:
- (void) backToPrevious: (id) sender
{
//[self.navigationController popViewControllerAnimated:YES];
[self dismissModalViewControllerAnimated:YES];
}
答案 3 :(得分:2)
对于模态呈现的视图控制器,您可以使用modalTransitionStyle
属性更改动画。 AFAIK,没有办法改变导航控制器的推动画(除了从头开始重建UINavigationController)。