func logInUser(withEmail email: String, password: String, completion: AuthDataResultCallBack?) { Auth.auth().signIn(withEmail: email, password: password, completion: completion) }
但我一直得到一个错误说:在范围中找不到类型“AuthDataResultCallBack”
我有firebase进口,但不知道在哪里看现在。
1条答案
按热度按时间xfb7svmp1#
typealias AuthDataResultCallback =(AuthDataResult?,Error?)-> Void
如果你看到AuthDataResultCallback的定义,它是一个类型别名。因此,不要使用“AuthDataResultCallback”,而是使用闭包语法。
在FirebaseAuth模块的FIRAuth.h文件中也提到了它。“使用Swift的闭包语法。”