首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

界面进来和退出的动画效果

2012-08-14 
界面进入和退出的动画效果view进入和退出的动画1、UIViewController的presentModalViewController可做从下

界面进入和退出的动画效果

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,从左向右移出屏幕

热点排行