I'm testing an app with facebook login . I made a button and when i click it Facebook pages appears and after the password it disappears. The problem is that the block from [PFFacebookUtils loginWithPermissions] is never called. That way i can't preform my segue.
I think i have all the configurations made on Parse and Facebook. All classes are imported in the PrefixHeader
The Appdelegate methods have been updated with the info that is in the docs of developer.facebook.com.
PrefixHeader
AppDelegate
My Root View Controller Class
After a lot of hours i figured it out !
I don't know why but i needed to change the AppDelegate code to
}
and not the block is now called because i added "withSession:[PFFacebookUtils session]" .
I have no idea why i have to do this because in the Facebook guide it's not written. If someone could explain me i would be thankful.