ios swift3网络不行的时候弹框

使用本地话的error

// 弹框网络不行
let alert = UIAlertController(title: "⚠️", message: err?.localizedDescription, preferredStyle: .alert)
alert.addAction(UIAlertAction(title: "ok", style: .default, handler: { (action:UIAlertAction) in
    
}))
self.present(alert, animated: true, completion: nil)
// 异步 到主线程
DispatchQueue.main.async {
}

你可能感兴趣的:(ios swift3网络不行的时候弹框)