2

在我的应用程序中,我使用 UIAlertController 进行演示,带有标题和消息。消息被单行截断的地方。不仅对于一个项目,它在每个项目中都会重复。可能是什么原因和解决方案?提前致谢。

在 Device : iPhone 7, Tool 中测试: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)
4

0 回答 0