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'm using the facebook sdk to build a basic facebook client app. I followed facebook's tutorials in https://developers.facebook.com/docs/mobile/ios/build/#register. It tells you to build an Facebook ivar in your project. When I do that it works fine, however if I don't use an ivar and just have a Facebook property and a synthesizer for it, it doesn't work. Shouldn't the @property and @synthesizer automatically create an ivar without the programmer having to specify that.

Header File for working copy:

@interface AppDelegate : UIResponder <UIApplicationDelegate, FBSessionDelegate, FBRequestDelegate> {
Facebook* facebook;
}

@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) Facebook *facebook;
@property (strong, nonatomic) ViewController *viewController;

@end

Implementation file for working copy:

#import "AppDelegate.h"

@implementation AppDelegate

@synthesize window = _window;
@synthesize facebook = _facebook;
@synthesize viewController = _viewController;

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
self.viewController = [[ViewController alloc] init];

//Step 2
facebook = [[Facebook alloc] initWithAppId:@"MY_APP_ID" andDelegate:self];

//Step 3
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if([defaults objectForKey:@"FBAccessTokenKey"] && [defaults objectForKey:@"FBExpirationDateKey"]) {
    self.facebook.accessToken = [defaults objectForKey:@"FBAccessTokenKey"];
    self.facebook.expirationDate = [defaults objectForKey:@"FBExpirationDateKey"];
}

//Step 4
if (![facebook isSessionValid]) {
    NSArray* permissions = [[NSArray alloc] initWithObjects:@"read_stream", nil];
    [facebook authorize:permissions];
}

//Add the logout button
UIButton *logoutButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
logoutButton.frame = CGRectMake(40, 40, 200, 40);
[logoutButton setTitle:@"Log Out" forState:UIControlStateNormal];
[logoutButton addTarget:self action:@selector(logoutButtonClicked) forControlEvents:UIControlEventTouchUpInside];
[self.viewController.view addSubview:logoutButton];

return YES;
}

- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
    return [facebook handleOpenURL:url]; 
}


// For iOS 4.2+ support
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
    return [facebook handleOpenURL:url]; 
}

//Step 6
-(void)fbDidLogin {
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    [defaults setObject:[facebook accessToken] forKey:@"FBAccessTokenKey"];
    [defaults setObject:[facebook expirationDate] forKey:@"FBExpirationDateKey"];
    [defaults synchronize];

    NSLog(@"Before making newsfeed request");
    [facebook requestWithGraphPath:@"me/home" andDelegate:self];
}

//Method that gets called when the logout button is pressed
-(void)logoutButtonClicked:(id)sender {
    [facebook logout];
}

-(void)fbDidLogout {
    //Remove saved authorization information if it exists
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    if ([defaults objectForKey:@"FBAccessTokenKey"]) {
        [defaults removeObjectForKey:@"FBAccessTokenKey"];
        [defaults removeObjectForKey:@"FBExpirationDateKey"];
        [defaults synchronize];
    }
}

-(void)request:(FBRequest *)request didReceiveResponse:(NSURLResponse *)response {
    NSLog(@"Response is: %@", response);
}

Header File for not working copy:

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

@interface AppDelegate : UIResponder <UIApplicationDelegate, FBSessionDelegate, FBRequestDelegate>

@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) Facebook *facebook;
@property (strong, nonatomic) ViewController *viewController;

@end

Implementation file for not working copy:

#import "AppDelegate.h"

@implementation AppDelegate

@synthesize window = _window;
@synthesize facebook = _facebook;
@synthesize viewController = _viewController;

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.
    self.viewController = [[ViewController alloc] init];

    //Step 2
    self.facebook = [[Facebook alloc] initWithAppId:@"MY_APP_ID" andDelegate:self];

    //Step 3
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    if([defaults objectForKey:@"FBAccessTokenKey"] && [defaults objectForKey:@"FBExpirationDateKey"]) {
        self.facebook.accessToken = [defaults objectForKey:@"FBAccessTokenKey"];
        self.facebook.expirationDate = [defaults objectForKey:@"FBExpirationDateKey"];
    }

    //Step 4
    if (![self.facebook isSessionValid]) {
        NSArray* permissions = [[NSArray alloc] initWithObjects:@"read_stream", nil];
        [self.facebook authorize:permissions];
    }

    //Add the logout button
    UIButton *logoutButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    logoutButton.frame = CGRectMake(40, 40, 200, 40);
    [logoutButton setTitle:@"Log Out" forState:UIControlStateNormal];
    [logoutButton addTarget:self action:@selector(logoutButtonClicked) forControlEvents:UIControlEventTouchUpInside];
    [self.viewController.view addSubview:logoutButton];

    return YES;
}

// Pre iOS 4.2 support
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
    return [self.facebook handleOpenURL:url]; 
}

// For iOS 4.2+ support
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url 
sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
    return [self.facebook handleOpenURL:url]; 
}

//Step 6
-(void)fbDidLogin {
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    [defaults setObject:[self.facebook accessToken] forKey:@"FBAccessTokenKey"];
    [defaults setObject:[self.facebook expirationDate] forKey:@"FBExpirationDateKey"];
    [defaults synchronize];

    NSLog(@"Before making newsfeed request");
    [self.facebook requestWithGraphPath:@"me/home" andDelegate:self];
}

//Method that gets called when the logout button is pressed
-(void)logoutButtonClicked:(id)sender {
    [self.facebook logout];
}

-(void)fbDidLogout {
    //Remove saved authorization information if it exists
    NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
    if ([defaults objectForKey:@"FBAccessTokenKey"]) {
        [defaults removeObjectForKey:@"FBAccessTokenKey"];
        [defaults removeObjectForKey:@"FBExpirationDateKey"];
        [defaults synchronize];
    }
}


-(void)request:(FBRequest *)request didReceiveResponse:(NSURLResponse *)response {
    NSLog(@"Response is: %@", response);
}

Please can anybody tell me how not using ivar messes things up when the @property is supposed to create a ivar in the background? Please let me know if you need more clarifications. thanks.

share|improve this question
2  
I don't know what's going wrong, but I don't see how the first example could be working. You actually have two ivars in that case: facebook and _facebook, and you're alternating between the two inconsistently. – warrenm May 8 '12 at 23:22
I'm assuming this is ARC? – Joel May 8 '12 at 23:28
The key for the problem lies here: @synthesize facebook = _facebook; You synthesize facebook and assign it as _facebook. But you are from then on not initializing it as _facebook in your code... Delete the =_facebook and you will be ok. – Lefteris May 8 '12 at 23:40
Yes this is ARC. – ppranav May 9 '12 at 14:35
Exactly, so on the one that's not working, I have @synthesize facebook = _facebook. Then when I use self.facebook throught the program, it should indirectly work on the ivar _facebook, shouldn't it? So why would that not work? – ppranav May 9 '12 at 14:38
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.