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've stuck on this for a while... How do I install the Facebook SDK??

I imported a group called FBConnect that contains 9 header files (that's all I've done), but I find all of these tutorials telling me to create an object like this...

Facebook *facebook;

But I don't have a Facebook class at all... How can I do this in my iPhone app/project? Below is what I really want to do and this is all...

http://stackoverflow.com/questions/6638955/facebook-ios-sdk-get-list-of-friends
share|improve this question
Did you import the headers? Something like #import <FacebookHeaderName/FacebookHeaderName.h> – Dustin Jul 20 '12 at 14:53
Note that the class name doesn't have to be the name of the header file. You should have the class – MrAzulay Jul 20 '12 at 14:53
All I did was this...#import "FBConnect.h" – The Man Jul 20 '12 at 14:55
Its in my xcode project but it's causing errors because I user ARC.. – The Man Jul 20 '12 at 15:03
To disable ARC for the Facebook SDK code files try following this guide: leesilver.net/1/post/2011/8/… – lyptt Jul 20 '12 at 15:42

1 Answer

up vote 1 down vote accepted

If you downloaded the official SDK from this link you should follow this tutorial. It has the Facebook class and all you need to fetch the friends list.

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.