I am trying to integrate Facebook sharing in my application. I am using UIActivityViewController as follows:
NSArray * activityItems = @[self.imgView.image, self.txtField.text]; UIActivityViewController * activityVC = [[UIActivityViewController alloc] initWithActivityItems:activityItems applicationActivities:nil]; [self presentViewController:activityVC animated:YES completion:nil];
So far, everything has been working fine. But I encountered such a problem - when I click the facebook icon and enter the facebook sharing screen, an alertView appears:

so the problem is that when I click the "Settings" button, my controller is simply fired and nothing happens. For twitter, everything works well - when the "Settings" button is clicked, my application goes into the background and the settings open. Why does this not work for Facebook? Any help would be assigned.
ADDED: Using SLComposeViewController leads to the same behavior - settings do not open
objective-c iphone facebook
Stas Sep 28 '12 at 10:21 2012-09-28 10:21
source share