i am using google sdk for google signin but after entering the email and password
in viewDidLoad i have added delegate
//set Google sign In delegates
Add following code in your AppDelegate.m file
-(BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation{
return [[GIDSignIn sharedInstance] handleURL:url
sourceApplication:sourceApplication
annotation:annotation];
}