【发布时间】:2011-02-23 12:56:45
【问题描述】:
如何呈现带有水平翻转动画的模态视图(例如在导航控制器上推动视图控制器)? 我试过了,但它不起作用
[UIView beginAnimations:@"animation" context:nil];
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromLeft forView:self.view cache:NO];
[self presentModalViewController:detailsViewController animated:NO];
[UIView commitAnimations];
谢谢!
【问题讨论】:
标签: iphone animation uiview modal-dialog