I am using FBSDKCoreKit (4.12.0) FBSDKLoginKit (4.12.0) first i am getting screen 1
This method is block is never called .
FBSDKLoginManager *login
I used did code to sign in Fabook, both work fine on iOS 8 and 9. Hope this helps you.
[[[FBSDKGraphRequest alloc] initWithGraphPath:@"me" parameters:@{@"fields": @"email,name,first_name,last_name"}] startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection, id result, NSError *error) {
if (!error) {
//Login success and callback here
} else {
//Login failed
}
}];