读书人

UIView Animation 卡通片效果

发布时间: 2012-07-02 17:46:23 作者: rapoo

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];

读书人网 >移动开发

热点推荐