【iOS开发】---- UIView动画



UIView视图的动画功能,可以使在更新或切换视图时有放缓节奏、产生流畅的动画效果,进而改善用户体验。


下面是uiview动画的基本用法,附注释:



[UIView beginAnimations:@"nanimationId" context:nil];
//设置动画持续时间,单位:秒,默认0.2s。
//在ios4及以后不鼓励使用这种方法。应该尽量使用基于block的动画来设定动画和持续时间
[UIView setAnimationDuration:0.5];
//动画曲线类型
//在ios4及以后不鼓励使用这种方法。尽量使用animateWithDuration:delay:options:animations:completion:这个方法
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
//是否自动执行反方向的动画
[UIView setAnimationRepeatAutoreverses:NO];
//设置转场动画
switch (btn.tag) {
case 0:
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.view cache:YES];//oglFlip, fromLeft
break;
case 1:
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:btn cache:YES];//oglFlip, fromRight
break;
case 2:
[UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];
break;
case 3:
[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:btn cache:YES];
break;
default:
break;
}
[UIView commitAnimations];




你可能感兴趣的:(动画,UIView)