3

I am using SLComposeViewController to compose a text to share on Facebook. I would like to automatically add my company name (similar to @ while in Facebook.). So it would look like: ".... @company" and the @company would be a link to the Facebook page of the company.

current code:

SLComposeViewController *mySLComposerSheet = nil;
NSString* shareString = @"I just used app from @company";
mySLComposerSheet = [[SLComposeViewController alloc] init]; //initiate the Social Controller
mySLComposerSheet = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];
[mySLComposerSheet setInitialText:shareString];
[self presentViewController:mySLComposerSheet animated:YES completion:nil];
Moxy
  • 4,162
  • 2
  • 30
  • 49
eric f.
  • 906
  • 2
  • 9
  • 17

0 Answers0