у меня срабатывает блок else с successfully.
func changePassword(currentPassword: String, proposedPassword: String) -> Bool {
var result: Bool = false
AWSMobileClient.default().changePassword(currentPassword: currentPassword, proposedPassword: proposedPassword) { (error) in
if let error = error as? AWSMobileClientError {
print(error.localizedDescription)
result = false
} else {
print("password successfully changed")
result = true
}
}
return result
}
возвращяй в escaping кложуре или можно симофором закостылить
Обсуждают сегодня