我完全不熟悉Swift,Xcode和Mac上的编程。
我已经开始处理某种应用,我真正做的就是添加Firebase(有效),然后尝试添加Google登录。真的没有别的东西存在。所以确实有一个Google登录按钮。我认为当我将一个属性连接到Google登录按钮时,崩溃就开始了。
唉,我是新手,我甚至不知道如何正确调试。有人可以成为助手吗?
我的代码:
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool
{
// Override point for customization after application launch.
FirebaseApp.configure()
GIDSignIn.sharedInstance().clientID =
FirebaseApp.app()?.options.clientID
GIDSignIn.sharedInstance().delegate = self
return true
}
override func viewDidLoad()
{
super.viewDidLoad()
GIDSignIn.sharedInstance().uiDelegate = self
}
这是财产:
@IBOutlet weak var googleLoginButton: GIDSignInButton!