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.


using facebook-facebook-ios-sdk-cf1c2c3, the _sessionDelegate object is being deallocated before my app is moved to the background.

This means when the app comes to the foreground after the authentication/authorization callback, this method in Facebook.m hits causes a EXC_BAD_ACCESS:

- (void)fbDialogLogin:(NSString *)token expirationDate:(NSDate *)expirationDate

The offending line in that method being this one:

  if ([self.sessionDelegate respondsToSelector:@selector(fbDidLogin)]) {
    [_sessionDelegate fbDidLogin];
  }

I think this is because in Facebook.h, _sessionDelegate is being assigned not retained. Therefore at some point it is deallocated:

@property(nonatomic, assign) id<FBSessionDelegate> sessionDelegate;

Changing it to retain appears to resolve the problem:

@property(nonatomic, retain) id<FBSessionDelegate> sessionDelegate;

Seems like too obvious a thing to me. Therefore I must be missing something!

Any ideas?

Many thanks, xj

share|improve this question

3 Answers

Changing the delegate to a retain method in this case is probably a more stable solution than anything else. However somewhere your delegate is being released before you want it to be released and you may need to look into what would cause it to be released early. However if you do this make sure you edit the Facebook.m dealloc() method to release your delegate

share|improve this answer
I guess what I'm interested in is, what is the underlying problem with the Facebook iOS SDK, or the way that I am using it, that causes this to happen? Should I have to edit the Facebook sample code to fix such an obvious bug? Maybe it's a configuration issue. – Max MacLeod May 12 '11 at 8:54

I had same EXC_BAD_ACCESS problem.i resolved it by removing other allocated instance of rootViewController.

RootViewController *rootViewController = [[RootViewController alloc] init];  <--------

facebook = [[Facebook alloc] initWithAppId:kAppId andDelegate:rootViewController];

it should be allocated only once.

that means if you are again allocating your rootViewController and pushing/adding it another viewController it retains its previous instance.

Hope it helps to resolve EXC_BAD_ACCESS.

share|improve this answer

In calling page you must disable ARC!

share|improve this answer
1  
this should be a comment – RDC Aug 20 '12 at 7:25

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.