I am trying to share text on Facebook using SLServiceTypeFacebook on iOS 8.3. But the popup text box appears blank. I want it to appear with text in it. Below you can see the code that I use for this.
if([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook]) { SLComposeViewController *controller = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook]; [controller setInitialText:@"First post from my iPhone app"]; [self presentViewController:controller animated:YES completion:Nil]; }
ios social-framework
birdcage Apr 28 '15 at 17:13 2015-04-28 17:13
source share