this is the login success with iOS 9.0.1.
this is the login failed with iOS 9 iPhone .
and in iOS 9 iPhone i have this warning :
the sdk update to parse 1.8.5 and Facebook to 4.6 from here :https://developers.facebook.com/docs/ios/ios9
what can I do to solved this ?
the Facebook login is with PFFacebookUtils logInInBackgroundWithReadPermissions :
NSArray *permissions = [NSArray arrayWithObjects:@"email",@"user_friends", nil];
[PFFacebookUtils logInInBackgroundWithReadPermissions:permissions block:^(PFUser *user, NSError *error)
{
if (!user) // The user cancelled the Facebook login
{
NSLog(@"Uh oh. The user cancelled the Facebook login.");
}
else if (user.isNew)
{
}
else if (user) // the user is exist at DB
{
}
else if (error)
{
}
}];