在我的应用程序中,我将使用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)