Xcode 11 beta 5: UI freezes when adding textFields into UIAlertController
问题 When I add one or more textField into UIAlertController the app freezes, once I deleted the textFields it works perfectly fine. Xcode 11 beta 5 running on Mojave 10.14.6 @IBAction func addRecipeBtnHandler(_ sender: Any) { let alert = UIAlertController(title: "Add new recipe", message: nil, preferredStyle: .alert) alert.addTextField { textField in textField.placeholder = "title" } alert.addTextField { textField in textField.placeholder = "description" } let action = UIAlertAction(title: "Add",