iOS 界面翻转切换动画

[UIView  beginAnimations:nil context:NULL];

    [UIView setAnimationCurve:UIViewAnimationCurveLinear];

    [UIView setAnimationDuration:0.75];

    [self.navigationController pushViewController:controller animated:NO];

    [UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:self.navigationController.view cache:NO];

    [UIView commitAnimations];

posted on 2015-04-22 16:30  Hai_阔天空  阅读(693)  评论(0编辑  收藏  举报

导航