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 转换的错误,有人有解决方法吗?