firebase 在范围中找不到类型“AuthDataResultCallBack”

68de4m5k  于 2023-10-22  发布在  其他
关注(0)|答案(1)|浏览(108)
func logInUser(withEmail email: String, password: String, completion: AuthDataResultCallBack?) {     Auth.auth().signIn(withEmail: email, password: password, completion: completion)    }

但我一直得到一个错误说:在范围中找不到类型“AuthDataResultCallBack”
我有firebase进口,但不知道在哪里看现在。

xfb7svmp

xfb7svmp1#

typealias AuthDataResultCallback =(AuthDataResult?,Error?)-> Void

如果你看到AuthDataResultCallback的定义,它是一个类型别名。因此,不要使用“AuthDataResultCallback”,而是使用闭包语法。
在FirebaseAuth模块的FIRAuth.h文件中也提到了它。“使用Swift的闭包语法。”

相关问题