I haven't any problems with FB login until now. After i updated to the newest SDK first i received an error in the FB app on the device with iOS 6 while login in. Now the when i tap facebook in the view i just get an error that something went wrong and the FB app doesn't open. I don't see any errors being reported. This is my code to login
if(![PFUser currentUser]){
MyLoginViewController *logInController = [[MyLoginViewController alloc] init];
logInController.delegate = self;
logInController.signUpController.delegate = self;
logInController.fields = PFLogInFieldsFacebook|PFLogInFieldsDismissButton;
logInController.facebookPermissions = [NSArray arrayWithObjects:@"user_about_me",@"status_update",@"user_birthday", nil];
[self presentModalViewController:logInController animated:YES];
}
This problem might have to do with changes to fb sdk 3.1 and write permissions but i am not sure. Any suggestions would be greatly appreciated!
Thank You!