Tag: uialertviewcontroller

所有警报对话框消息和textField已被更改为单行。 请检查图像

以前所有的对话框和textField都运行良好。 但不是我不知道这些TextFields是如何突然变成单线三合一的。 (像这里的一些消息…) let alert = UIAlertController(title: "Cancel Booking !!", message: "Are you sure you want to cancel your booking?", preferredStyle: .alert) alert.addAction(UIAlertAction(title: "No", style: .default, handler: nil)) alert.addAction(UIAlertAction(title: "Yes", style: .default, handler: self.cancelMessageDialog)) self.present(alert, animated: true, completion: nil)