界面进入和退出的动画效果
view进入和退出的动画
1、UIViewController的presentModalViewController可做从下往上的进进入和退出
2、UINavigationController的pushViewController可以从右往左一层层进入和退出
3、给UIView设置动画,可以做任何方向的进入和退出效果,例如:
[UIViewbeginAnimations:@"ViewFlip"context:nil];
[UIViewsetAnimationCurve:UIViewAnimationCurveEaseInOut];
photoCommentViewControl.view.frame =CGRectMake(0,0, 320, 480);
[UIViewanimateWithDuration:1.0animations:^{photoCommentViewControl.view.frame =CGRectMake(320,0, 320, 480);}
completion:^(BOOL finished){
}];
[UIView commitAnimations];
上面代码中的view会从0,0点移动到320,0,从左向右移出屏幕