modalPresentationStyle

modalPresentationStyle

我想在iOS5中使用UIView的presentModalViewController方法在iPad中显示一个弹出窗口。

即使我将modalPresentationStyle设置为UIModalPresentationFormSheet,它也仅显示为完整帧大小。

我之前在iOS4中使用过相同的代码,它可以显示为弹出窗口。如何在iOS5中修复?


DetailViewController *d = [[DetailViewController alloc] initWithNibName:nil bundle:nil];
self.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:d animated:YES];

谢谢。

最佳答案

你有试过吗

d.modalPresentationStyle = UIModalPresentationFormSheet;

代替
self.modalPresentationStyle = UIModalPresentationFormSheet;

关于ios - modalPresentationStyle在iOS5的模态视图中不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8789790/

10-09 03:35