您的位置:首页 > 移动开发 > IOS开发

iOS 界面翻转切换动画

2015-04-22 16:30 381 查看

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

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: