Avatar
omochimetaru 5/12/2017 3:44 AM
iOS10LongAlert
3:44 AM
iOS10でくっそ長い文言をUIAlertControllerに渡すとボタンが隠れる(本当は button1, button2, cancel の3つがある)
3:44 AM
たすけてー
3:46 AM
@IBAction func onButton() { var message = "" for _ in 0..<1000 { message += "長い文言" } let alertController = UIAlertController(title: "aaa", message: message, preferredStyle: .alert) alertController.addAction(UIAlertAction(title: "button1", style: .default) { print($0) }) alertController.addAction(UIAlertAction(title: "button2", style: .default) { print($0) }) alertController.addAction(UIAlertAction(title: "cancel", style: .cancel) { print($0) }) present(alertController, animated: true, completion: nil) }
3:46 AM
再現コード・・・