Parse Password Reset Ошибка в iOS Swift
Я использую приведенный ниже код для сброса пароля, как указано в документации разбора: https://parse.com/docs/ios/guide Однако я получаю ошибку: "не могу вызвать"requestPasswordResetForEmailInBackground"с аргументом тип (строка (bool!,nserror!)->Void)
Код, который я использую:
var emailVar = emailField.text
PFUser.requestPasswordResetForEmailInBackground(emailVar) { (success: Bool, error: NSError!) -> Void in
if (error == nil) {
let alertView = UIAlertController(title: "Password recovery e-mail sent", message: "Please check your e-mail inbox for recovery", preferredStyle: .Alert)
alertView.addAction(UIAlertAction(title: "Ok", style: .Default, handler: nil))
self.presentViewController(alertView, animated: true, completion: nil)
}else {
let alertView = UIAlertController(title: "Could not found your e-mail", message: "There is no such e-mail in our database", preferredStyle: .Alert)
alertView.addAction(UIAlertAction(title: "Ok", style: .Default, handler: nil))
self.presentViewController(alertView, animated: true, completion: nil)
}
}
1 ответ
Решение
В новом parse api ошибка изменена на optional
значение, используя вот так:
PFUser.requestPasswordResetForEmailInBackground(emailVar) {
(success: Bool, error: NSError?) -> Void in
}