Trong Swift 4.1 và Xcode 9.4.1
Giải pháp là
DispatchQueue.main.async(execute: {
self.present(alert, animated: true)
})
Nếu viết như thế này thì tôi cũng bị lỗi tương tự
let alert = UIAlertController(title: "title", message: "message", preferredStyle: .alert)
let defaultAction = UIAlertAction(title: "OK", style: .default, handler: { action in
})
alert.addAction(defaultAction)
present(alert, animated: true, completion: nil)
Tôi đang bị lỗi tương tự
Presenting view controllers on detached view controllers is discouraged <MyAppName.ViewController: 0x7fa95560Z070>.
Giải pháp hoàn chỉnh là
let alert = UIAlertController(title: "title", message: "message", preferredStyle: .alert)
let defaultAction = UIAlertAction(title: "OK", style: .default, handler: { action in
})
alert.addAction(defaultAction)
//Made Changes here
DispatchQueue.main.async(execute: {
self.present(alert, animated: true)
})