Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am getting this error when I build my project that involves posting to Facebook from an iPhone: Undefined symbols for architecture i386: "_OBJC_CLASS_$_Facebook", referenced from: objc-class-ref in AppDelegate.o ld: symbol(s) not found for architecture i386 clang: error: linker command failed with exit code 1 (use -v to see invocation)

I've gotten errors like this before and it's always been because I have failed to import some package. But, I have already imported "FBConnect.h" and "Facebook.h", but maybe there's another one I'm missing. I also saw on a post on this site that you need to put the FBConnectSDK framework in "Link Binary With Libraries" under Build Settings, but I did that and I got 13 more errors... I am using storyboard and ARC is set to off. Thanks for your help.

share|improve this question
Well, I finally fixed it. After a hail mary google search i found that i needed to import the FacebookSDK file into the AppDelegate.h file, and then I needed to delete all the code in one of the two FBRequest files that I had in my project, which didn't work until about the 6th time I tried it – Sam Johnson Aug 9 '12 at 18:01

1 Answer

I solve a similar problem by checking the Target Membership of my library. Select the library and files relevant to your app target from the Navigator. Check on the Utilities section that those files are marked as required for your app target.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.