我有自定义 ViewController 并希望将其显示为警报。当我像下面那样做时,我的自定义 ViewController 不会填充 UIAlertController 的全部内容并显示滚动条。如何做到这一点以及如何禁用滚动。
let alert : UIAlertController = UIAlertController(title: nil, message: nil, preferredStyle: .alert)
alert.setValue(myCustomViewController, forKey: "contentViewController")
self.present(alert, animated: true)