I’m using AddThis within iOS to share an image. Although everything else works (Twitter, email, etc.), as I try to share the image with Facebook, the application crashes. I setup the FB keys and secret as required, but after some debugging, this is the error that comes up:
[FBRequest initWithSession:graphPath:]: unrecognized selector sent to instance 0x268b10
Any idea on how to solve this?
Thanks in advance!
Finally, the problem is solved!
I was able to solve it by removing every Facebook file inside the folder ThirdPartyLibs/FBConnect except for the folder FacebookSDK. The problem was that the code inside this folder (ThirdPartyLibs/FBConnect) was “hiding” the valid code inside the FacebookSDK folder and there was a repeated FBRequest header that did not have initWithSession:graphPath:
I hope that this might help anyone that runs into the same issue. 😉