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

UIView Animation 卡通片效果

2012-07-02 
UIView Animation动画效果????[UIView beginAnimations:@View Flip context:nil] ????[UIView setAnima

UIView Animation 动画效果

    ????[UIView beginAnimations:@"View Flip" context:nil]; ????[UIView setAnimationDuration:1.25]; ????[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut]; ???? ????UIViewController *coming = [[UIViewController alloc] init]; ????UIViewController *going =??[[UIViewController alloc] init]; ????UIViewAnimationTransition transition; ???? ????coming.view = self.view.superview; ????going.view = self.view; ????transition = UIViewAnimationTransitionCurlUp; ???? ????[UIView setAnimationTransition:transition forView:self.view.superview cache:YES]; ????[coming viewWillAppear:YES]; ????[going viewWillDisappear:YES]; ????[going.view removeFromSuperview]; ????[going viewDidDisappear:YES]; ????[coming viewDidAppear:YES]; ???? ????[UIView commitAnimations];

热点排行