I'm trying to use FBUserSettingsViewController but it's crashing every time I try to dismiss it. I use the following code to display it:
PS: it only crashes on ios 6 with this error:
// [FBUserSettingsViewController dealloc];
FBUserSettingsViewController *a =[[FBUserSettingsViewController alloc] init];
[a setDefaultAudience:FBSessionDefaultAudienceEveryone];
[a setDelegate:self];
[a setPublishPermissions: [NSArray arrayWithObject:@"publish_actions"]];
[nav presentViewController:a animated:NO completion:nil];
and this to dismiss it:
- (void)facebookViewControllerDoneWasPressed:(id)sender{
_facebook = [[Facebook alloc]
initWithAppId:@"176237615850674"
andDelegate:self];
// Store the Facebook session information
_facebook.accessToken = FBSession.activeSession.accessToken;
_facebook.expirationDate = FBSession.activeSession.expirationDate;
if ([nav respondsToSelector:@selector(dismissViewControllerAnimated:completion:)])
[nav dismissViewControllerAnimated:YES completion:nil];
else [nav dismissModalViewControllerAnimated:YES];
}
there is another question about this topic but there is not any answer there
