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:
- Click the main button to show the "HFViewController" screen
- Click back button
- 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