私のアプリでは、タイトルとメッセージとともに UIAlertController を提示しています。メッセージが 1 行で切り捨てられる場所。1 つのプロジェクトだけでなく、すべてのプロジェクトで繰り返されます。原因と解決策は何ですか?前もって感謝します。
デバイス : 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)