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 encountered some error during facebook integration. Did i configure the Facebook SDK correctly? Please advise.

Undefined symbols for architecture armv7:
  "_OBJC_CLASS_$_Facebook", referenced from:
      objc-class-ref in SettingView.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)

I did the following step:

  1. Downloaded latest Facebook SDK (facebook-facebook-ios-sdk-v1.1-11-g07626c3.zip)
  2. Change the build_facebook_ios_sdk_static_lib.sh as the following: XCODEBUILD_PATH=/Developer/usr/bin to: XCODEBUILD_PATH=/Applications/Xcode.app/Contents/Developer/usr/bin
  3. Add the facebook-ios-sdk folder (from the lib folder) to my project
  4. I just type declare the facebook variable and run. It shows me the errors

    facebook = [[Facebook alloc] initWithAppId:@"myAppID" andDelegate:self];

==============================

EDIT: Ok. I have found the solution. I have missed out 1 step which to link against the libfacebook_ios_sdk.a in Xcode

  1. Go to Link Binary with Libraries
  2. Click on Add Other
  3. Add libfacebook_ios_sdk.a
share|improve this question
umm.. where are the errors? Also the initWithAppID it doesn't ACTUALLY say "myAppID" right – MCKapur Mar 22 '12 at 8:51
myAppID is the numbers i get from facebook. i "censored" it with "myAppID". Anyway, i have found the solutions. – RockBaby Mar 22 '12 at 8:55

1 Answer

Ok. I have found the solution. I have missed out 1 step which to link against the libfacebook_ios_sdk.a in Xcode

  1. Go to Link Binary with Libraries
  2. Click on Add Other
  3. Add libfacebook_ios_sdk.a
share|improve this answer
Really helpful. Thanks a lot :) – rohit mandiwal Aug 7 '12 at 3:51

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.