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 made a small change on the HelloFacebookSample from facebook SDK samples.
I've just added a tab bar and a navigation bar. The tab bar displays a page with only a button (I'll call it main button). When clicking this main button the HFViewController appears:

HFViewController *newview1 = [[HFViewController alloc] initWithNibName:@"HFViewController_iPhone" bundle:nil];
[self.navigationController pushViewController:newview1 animated:YES];

That's all.

The error appears after these 3 steps:

  1. Click the main button to show the "HFViewController" screen
  2. Click back button
  3. Click again the main button

At the step 3 the app fires the error "EXC_BAD_ACCESS". You must be logged in facebook to see the error, or just try to login after the third step.

When I made breakpoints, I found that the error comes from this line:

FBLoginView *loginview = [[FBLoginView alloc] initWithPermissions:[NSArray arrayWithObject:@"status_update"]];

Could you help please?

I'm using XCode 4.4.1 and facebook SDK 3.0

share|improve this question

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.