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.

When i wrote this line then this code

#import <Foundation/Foundation.h>
#import "cocos2d.h"
#import "FBConnect.h"
//Register the delegates with this layer


@interface GameLayer :CCLayer<FBDialogDelegate, FBSessionDelegate, FBRequestDelegate>
{

//******************************************************/
// This is the facebook session that we use to interface
// with facebook, EVERYTHING facebook related relies
// on this: Login, Publishing Stories, etc...
//******************************************************/
    FBSession *_session;// Error occur: 
}

//******************************************************
// Facebook notifications from MenuLayer to do the work
//******************************************************
-(void)LogOutFaceBook:(NSNotification *)notification;
-(void)LoginFaceBook:(NSNotification *)notification;
@end

This Error is appear : error: expected specifier-qualifier-list before 'FBSession'

How can i resolve this? I connect FBConnect folder and FBConnect.bundle in my project.What will i do?

share|improve this question
you can use share kit in ur project, for dealing with fb – rptwsthi Sep 22 '11 at 6:04

1 Answer

Try

#import "FBConnect/FBConnect.h"
#import "FBConnect/FBSession.h"

If you keep the Command key pressed and double-click on FBSession, does it take you to the definition? If not, looks like you have not included the FBConnect files properly.

Ensure you follow all the steps mentioned on their github page properly.

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.