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'm trying to integrate Facebook sharing procedure into my app. I'm using UIActivityViewController like this:

NSArray * activityItems = @[self.imgView.image, self.txtField.text];
UIActivityViewController * activityVC = [[UIActivityViewController alloc] initWithActivityItems:activityItems applicationActivities:nil];
[self presentViewController:activityVC animated:YES completion:nil];

Till now all have been working fine. But I've met such problem - when I click on facebook icon and enter the facebook sharing screen the alertView appears:

enter image description here

so the problem is - when I click Setting my controller is just dismissed and nothing happens. For twitter all is working well - when Settings button is clicked my app is going background and the Settings is opened. Why this does not work for Facebook? Any help will be appriciated.

ADDED: Using SLComposeViewController leads to the same behavior - Settings does not open

share|improve this question
As I know openURL doesn't work for the settings anymore. Where's your exact problem? The settings or facebook? – Fabio Poloni Sep 28 '12 at 13:00
it DOES work with twitter! Yeah my problem is that user can't be redirected to Settings automatically as it is done in twitter dialog. – Stas Sep 28 '12 at 16:29
I've not checked on a phone, but I have the same problem on the simulator. – Joakim Engstrom Oct 3 '12 at 9:10
I have the same problem in Twitter. Clicking on settings closes it and does nothing. Using self presentViewController:tweetSheet – curtis Oct 8 '12 at 22:26
hehe, strange thing...I have it working fine with tw – Stas Oct 9 '12 at 9:42
show 1 more comment

5 Answers

up vote 2 down vote accepted

This bug seems to be fixed in new version of iOS (6.0.1) At least I have all working well since my last updgrade.

share|improve this answer

iOS 6.0.1 resolve this issue. Update software on device it go setting view.

share|improve this answer

i am having the same issue you update the ios from 6 to 6.0.1 and remove the verification type **SLServiceTypeFacebook** in **SLComposeViewController** at first.,thats all working fine for me now.

share|improve this answer

I just integrated the facebook social framework into my app and had exact same issue on iOS 6.1, i.e. when my facebook account is not setup, I will get this warning, but clicking "Setting" will simply dismiss the dialog instead of bringing me to the device's setting page.

I found out this seems to be a simulator ONLY issue, it works perfectly on real device. I'd suggest you to give a try.

share|improve this answer

You neeed to Login into Facebook ,First when you open the app the Settings alert will appear,if you are logged in already then that Setting alert will not be displayed.Go To Setting Page, Login with Facebook .After that you can post anything.That message will not be displayed.

share|improve this answer
3  
This is not an answer to my question at all..( – Stas Nov 1 '12 at 8:27

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.