从外部静态函数在ViewController上显示警报



我有一个注册视图控制器,它调用Service类并使用其static func signUp(...)为某人注册数据库。

如果注册不成功,则应通过showAlert(...)静态方法显示警报。

然而,发生的情况是,不成功的注册被记录下来,但我目前的方法没有显示警报。

Attempt to present <UIAlertController: xx> on <Yyy:SignUpViewController: ss> whose view is not in the window hierarchy!

目前,我正在尝试将SignUpViewController作为参数(vc: UIViewController(传递给静态方法,然后调用Service.showAlert(on: vc, ...)

我还尝试将showAlert(...)方法作为extension UIViewController合并到SignUpViewController类中,并将其从ServicesignUp()调用为vc.showAlert(...)。我收到了与上面相同的错误。

重要的是,我想重用来自不同视图控制器的数据库调用代码,所以我不想重写代码并将其放置在每个视图控制器中。这不仅仅是为了注册。我希望这些数据库调用在一个外部类中。

代码:

服务等级

static func signUp(email: String, password: String, vc: UIViewController) {
Auth.auth().signIn(withEmail: email, password: password) { (authResult, error) in
if let error = error {
print("Failed to sign in with error ", error)
Service.showAlert(on: vc, style: .alert, title: "Sign-in Error", message: error.localizedDescription)
return
}
// ...code
}
// ...code
}
// other methods
static func showAlert(on: UIViewController, style: UIAlertControllerStyle, title: String?, message: String?, actions: [UIAlertAction] = [UIAlertAction(title: "Ok", style: .default, handler: nil)], completion: (() -> Swift.Void)? = nil) {
let alert = UIAlertController(title: title, message: message, preferredStyle: style)
for action in actions {
alert.addAction(action)
}
on.present(alert, animated: true, completion: completion)
}

SignUpViewController类方法调用

Service.signUp(email: emailTextField.text!, password: passwordTextField.text!, vc: self)

编辑:

如果我在SignUpViewController中执行登录功能,则会显示警报:

@IBAction func btnActionLogin(_ sender: Any) {
Auth.auth().createUser(withEmail: self.emailTextField.text!, password: self.passwordTextField.text!) { (authResult, error) in
if let error = error {
print("Failed to create new user with error ", error)
Service.showAlert(on: self, style: .alert, title: "Account Creation Error", message: error.localizedDescription)
return
} else {
// ... more code
}
}

编辑2:

我实施的方法实际上很好。是我在错误的地方执行了切换视图控制器的操作!我不小心切换了视图控制器,这意味着登录成功,即使登录不成功。

如果不查看Auth文档,我无法100%确定解决方案,但我认为函数Auth.auth().signIn(withEmail: email, password: password)在后台线程上执行。

错误Attempt to present <UIAlertController: xx> on <Yyy:SignUpViewController: ss> whose view is not in the window hierarchy!可能是因为您正在从该后台线程调用Service.showAlert(on: vc, style: .alert, title: "Sign-in Error", message: error.localizedDescription)。当后台线程执行您的命令向用户显示警报时,视图很可能不再在堆栈上。

在主线程上运行任何影响UI的代码都很重要。

我建议您在主线程上异步执行代码,方法是用DispatchQueue.main.async包装这行代码,如下所示:

DispatchQueue.main.async { Service.showAlert(on: vc, style: .alert, title: "Sign-in Error", message: error.localizedDescription) }

希望这能解决问题。如果不报告回来,我会试着想想其他的事情。

更新:回答您关于显示警报的正确方法的问题:

"目前,我正试图将SignUpViewController作为参数(vc:UIViewController(,然后调用Service.showAlert(在:vc上,…(。我认为这不正确方法">

我使用了调用静态方法的相同方法。我认为这种模式没有任何问题。我在项目中通常这样做的方式如下:

我创建了一个类似于您的静态方法,用于处理在视图控制器上显示警报。

/** Easily Create, Customize, and Present an UIAlertController on a UIViewController
- Parameters:
- target: The instance of a UIViewController that you would like to present tye UIAlertController upon.
- title: The `title` for the UIAlertController.
- message: Optional `message` field for the UIAlertController. nil by default
- style: The `preferredStyle` for the UIAlertController. UIAlertControllerStyle.alert by default
- actionList: A list of `UIAlertAction`. If no action is added, `[UIAlertAction(title: "OK", style: .default, handler: nil)]` will be added.
*/
func showAlert(target: UIViewController, title: String, message: String? = nil, style: UIAlertControllerStyle = .alert, actionList:[UIAlertAction] = [UIAlertAction(title: "OK", style: .default, handler: nil)] ) {
let alert = UIAlertController(title: title, message: message, preferredStyle: style)
for action in actionList {
alert.addAction(action)
}
// Check to see if the target viewController current is currently presenting a ViewController
if target.presentedViewController == nil {
target.present(alert, animated: true, completion: nil)
}
}

然后,我从视图控制器中调用函数,如下所示:showAlert(target: self, title: "Error", message: "Some error message")

相关内容

  • 没有找到相关文章

最新更新