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 try to integrate facebook api in my app for publish post to wall. Now i integrate code in my appdelegate but i don't know receive this errore at this line: "initWithAppId: not found"

AppDelegate.h

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

@interface AppDelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate> {
   UIWindow *window;
   UITabBarController *tabBarController;
   Facebook *facebook;
}

@property (retain, nonatomic) IBOutlet UIWindow *window;
@property (retain, nonatomic) IBOutlet UITabBarController *tabBarController;
@property (retain, nonatomic) Facebook *facebook;

AppDelegate.m

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

    [self.window addSubview:self.tabBarController.view];

    facebook = [[Facebook alloc] initWithAppId:@"168377643283604"];
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    if ([defaults objectForKey:@"FBAccessTokenKey"] && [defaults objectForKey:@"FBExpirationDateKey"]) {
        facebook.accessToken = [defaults objectForKey:@"FBAccessTokenKey"];
        facebook.expirationDate = [defaults objectForKey:@"FBExpirationDateKey"];
    }
    [self.window makeKeyAndVisible];

   return YES;
  }
share|improve this question
1  
Have you just copied and pasted this code from somewhere? – Nick Bull Mar 27 '12 at 8:53

1 Answer

Try this:

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

Instead of

facebook = [[Facebook alloc] initWithAppId:@"YOUR_APP_ID" ];

and Don't forget to add YOUR APP ID in .plist file too.

Add this:

@interface AppDelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate,FBSessionDelegate>
share|improve this answer
I have insert APP ID in .plist. If i add "andDelegate:self" obtain this error: <(id<FBSessionDelegate>)> – Maurizio Mar 27 '12 at 9:19
See my edited code: – R.A Mar 27 '12 at 9:33

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.