关于 iphone:Modal UIViewController 总是在 iPad 上全屏显示。为什么?

Modal UIViewController always coming out full screen on iPad. WHY?

我正在尝试在 iPad 上创建一个简单的模态对话框,无论是小 (UIModalPresentationFormSheet) 还是大 (UIModalPresentationPageSheet) 设置,但无论我做什么,它们都会全屏显示(带有标题栏)。

模态 UIViewController 是在界面构建器中创建的,我似乎无法为其指定大小。为 UIViewController 中包含的 UIView 指定较小的尺寸无效。

我做错了什么?什么可能会影响这个问题?可能是我设置modalPresentationStyle的时间吗?我已经尝试过使用 UINavigationController 和不使用 UINavigationController,但得到了相同的结果。


在调用 presentModalViewController:animated.

之前,必须在父 ViewController 中设置 modalPresentationStyle

1
2
3
4
5
myViewController = // create your new controller if needed
myViewController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
myViewController.modalPresentationStyle = UIModalPresentationFormSheet;
//"self" is the parent ViewController
[self presentModalViewController:myViewController animated:YES]


我已经想通了。原来我使用的是 UIModalPresentationPageSheet,它总是在纵向模式下全屏显示。因为我的模态 UIViewController 没有响应 shouldAutorotateToInterfaceOrientation,所以它强制为纵向,这就是我认为模态弹出窗口不起作用的原因。

通过简单地向我的模态 UIViewController 添加一个 shouldAutorotateToInterfaceOrientation 处理程序,返回 YES,我现在看到在横向模式下我得到一个覆盖大部分(但不是全部)屏幕的大弹出窗口,这就是我已经一直在期待。