是否可以在iPad屏幕上的较小上下文中调用UIAlertController
(例如,对于iPhone模拟器)?我有一个UIViewController
的容器视图,我正在使用:
self.definesPresentationContext = true
alertController.modalPresentationStyle = UIModalPresentationStyle.OverCurrentContext
self.presentViewController(alertController, animated: true, completion: nil)
我还尝试从故事板设置上下文 - 两者都适用于标准UIViewController
,但没有任何阻止UIAlertController
接管整个屏幕。有什么建议吗?