尝试将Google Firebase Auth初始化为我的iOS应用时出现此错误。我已经使用Cocoapods安装了Firebase / Auth。错误:类型'Auth'没有成员'auth'。为什么会这样?
import UIKit
import Firebase
import FirebaseAuth
class LogIn: UIViewController {
@IBAction func loginClick(_ sender: Any) {
if !(emailTF.text?.isEmpty)! && !(passwordTF.text?.isEmpty)! {
Auth.auth().signIn(withEmail: emailTF.text, password: passwordTF.text) { (user, error) in
print(error)
}
}
}
}
更新:修正了它。我需要将Firebase添加到命令的开头。 Firebase.Auth.auth()。signIn(withEmail:emailTF.text,password:passwordTF.text)