Swift 3:AppDelegate不符合协议GIDSignInDelegate

前端之家收集整理的这篇文章主要介绍了Swift 3:AppDelegate不符合协议GIDSignInDelegate前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
现在我正在尝试实施Google登录.
我这样跟着:
https://developers.google.com/identity/sign-in/ios/sign-in?ver=swift

但我在AppDelegate.swift中遇到错误

class AppDelegate: UIResponder,UIApplicationDelegate,GIDSignInDelegate 
....

错误

Type ‘AppDelegate’ does not conform to protocol ‘GIDSignInDelegate’

帮我.

您需要在AppDelegate中实现GIDSignInDelegate的这两种方法.
func sign(_ signIn: GIDSignIn!,didDisconnectWith user: GIDGoogleUser!,withError error: Error!) {

}

func sign(_ signIn: GIDSignIn!,didSignInFor user: GIDGoogleUser!,withError error: Error!) {

}
原文链接:https://www.f2er.com/swift/319037.html

猜你在找的Swift相关文章