UIAlertController Xcode 9.1自动警报截断

时间:2017-11-06 12:36:17

标签: ios xcode swift3 uialertcontroller xcode9.1

在我的应用程序中,我将使用UIAlertController呈现标题和消息。消息被单行截断的位置。它不仅适用于每个项目中重复的一个项目。可能是什么原因&解决方案提前谢谢。

在设备中进行了测试:iPhone 7,工具:Xcode 9.1

let alert = UIAlertController(title: title, message: message, preferredStyle: UIAlertControllerStyle.alert)
        let okAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: nil)
        alert.addAction(okAction)
        self.present(alert, animated: true, completion: nil)

0 个答案:

没有答案