Reputation: 29886
I have setup my application key and secret as well as added the facebook connect button to my view. When I select the button and login within the app, it crashes with the following error
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[CategoryQuoteViewController session:didLogin:]: unrecognized selector sent to instance 0x5d10800'
I have no idea what this is and cant find anything on the facebook wiki.
Upvotes: 0
Views: 283
Reputation: 29886
The - (void)session:(FBSession*)session didLogin:(FBUID)uid delegate method needed to be added.
Upvotes: 1