次のSwift 3コードは別のクラスの別々の迅速なファイルにあります。UIViewController以外のクラスから警告ポップアップを表示するにはどうすればよいですか?
class Login{
func showAlert(message :String){
let alertController2 = UIAlertController(title: "Error", message: "A error occured when checking credentials, try again later.", preferredStyle: .alert)
let defaultAction = UIAlertAction(title: "OK", style: .default, handler: nil)
alertController2.addAction(defaultAction)
self.present(alertController2, animated: true, completion: nil)
}
}
しかし、私は赤のエラーが表示されます。
Use of unresolved identifier 'UIAlertController'
は、どのように私は何かが間違っていたことをユーザに知らせるポップアップを作成することができますか?