with google gidsignin auth swift swift3 google-signin

google - Swift 3: AppDelegate no se ajusta al protocolo GIDSignInDelegate



swift 4 login google (1)

Ahora estoy tratando de implementar Google Login. Lo seguí así: https://developers.google.com/identity/sign-in/ios/sign-in?ver=swift

Pero tengo un error en AppDelegate.swift:

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

error:

Escriba ''AppDelegate'' no concuerda con el protocolo ''GIDSignInDelegate''

Ayuadame.


GIDSignInDelegate implementar estos dos métodos de GIDSignInDelegate en su AppDelegate .

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