CocoaPods trunk is moving to be read-only. Read more on the blog, there are 12 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Apr 2015 |
Maintained by Daniel Tomlinson.
A quick wrapper around Google's web authentication for mobile devices.
let viewController = DANGoogleSignInViewController(clientId: "your google client id", scopes: ["your google scopes"])
navigationController.pushViewController(viewController, animated: true)or in legacy projects:
DANGoogleSignInViewController *viewController = [[DANGoogleSignInViewController alloc] initWithClientId:@"your google client id" scopes:@[@"your google scopes"]];
[self.navigationController pushViewController:viewController animated:YES];CocoaPods is the recommended installation method.
pod 'DANGoogleSignIn'