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 currently trying to integrate Facebook into my iOS application using Xcode. I am trying to follow the Facebook tutorial at https://developers.facebook.com/docs/mobile/ios/build/ yet when i try to add the Facebook class i receive an error. I have successfully added the fbconnect folder to my application as well as the src directory to my header search paths in Build Settings. I have just begun the tutorial and am already getting an error. Please Help

this is the code where i received the problem... //AppDelegate.h

#import <UIKit/UIKit.h>
#import "FBConnect.h"

@class ViewController;

@interface AppDelegate : NSObject <UIApplicationDelegate,FBRequestDelegate,FBSessionDelegate,FBDialogDelegate>{

Facebook *fb; //This is where the error is

}

@property (strong, nonatomic) UIWindow *window;

@property (strong, nonatomic) ViewController *viewController;

@property(nonatomic,retain)Facebook *fb;   //This is where the error is
@end
share|improve this question

2 Answers

How about adding this line to the top of your code?

"#import "Facebook.h"

share|improve this answer
The class is now recognized but the Facebook.h File is not found. – JohnAnge Kernodle May 18 '12 at 14:57

Try this link

Facebook iOS SDK

Hope this will a useful

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.