【发布时间】:2012-06-22 13:36:09
【问题描述】:
UIModalTransitionStylePartialCurl 不适用于 ios 4.3,但当我有完全相同的代码时,它适用于 ios5。
ViewController *infoView = [[[ViewController alloc] init] autorelease];
[infoView setModalPresentationStyle:UIModalPresentationFormSheet];
[infoView setModalTransitionStyle:UIModalTransitionStylePartialCurl];
[self presentModalViewController:infoView.view animated:YES];
[UIView commitAnimations];
我不明白,这是 ios 4.3 用于过渡的错误吗? 有人有解决办法吗?
【问题讨论】:
标签: objective-c uiviewanimation uimodaltransitionstyle