0
私は、アプリケーション内の他の場所からアクセスできるUIAlertControllerを含むいくつかの関数でヘルパークラスを使用していますが、ヘルパークラス自体からアクセスする際に問題があります。UIAlertController Swift 3.0でヘルパークラスを使用する
私は何の問題もそれを呼び出すことができ、クラスの外からfunc showAlert(title: String, msg: String, controller: UIViewController) {
let alert = UIAlertController(title: title, message: msg, preferredStyle: .alert)
let action = UIAlertAction(title: "OK", style: .default, handler: nil)
alert.addAction(action)
controller.present(alert, animated: true, completion: nil)
}
:私はエラーを取得するクラス内からしかし
Helper.helper.showAlert(title: "Not Internet Detected", msg: "Data Connectivity is Required", controller: self)
:
showAlert(title: "Email in use, did you use another method to register", msg: "please try again", controller: self)
私が手にエラーがある:
この問題を解決する方法問題?ありがとう!