UIView中有几个类方法用于指定试图转换过程是否要使用动画效果,指定转换类型和转换过程的持续时间。
如下红色部分代码即为动画转换相关的代码:
- (IBAction)switchViews:(UIBarButtonItem *)sender
{
NSLog(@"invoke switchViews fun!");
[UIView beginAnimations:@"View Flip" context:NULL];//声明“动画块”,View Flip:动画块标题,context部分指向关联到这个动画块的对象
[UIView setAnimationDuration:0.6];//设定动画的持续时间,单位为秒
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];//指定动画曲线,此处指定动画以较慢的速度开始,中间加速,然后慢慢停止。
if(!_myYewllowController.view.superview)
{
if(!_myYewllowController)
{
_myYewllowController = [self.storyboard instantiateViewControllerWithIdentifier:@"Yellow"];
}
[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:self.view cache:YES];//指定使用的转换类型,cache指定是否对动画进行缓存,一般需要
[_myBlueController.view removeFromSuperview];
[self.view insertSubview:_myYewllowController.view atIndex:0];
}
else
{
if(!_myBlueController)
{
_myBlueController = [self.storyboard instantiateViewControllerWithIdentifier:@"Blue"];
}
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];//同上
[_myYewllowController.view removeFromSuperview];
[self.view insertSubview:_myBlueController.view atIndex:0];
}
[UIView commitAnimations];//“提交动画”,从动画块开始(beginAnimations:context:调用后)到本方法之间的所有动作都会被制成动画
}