using the socialframework in ios6 if one tries to add an image to the facebook post the added URL gets editable. the URL appears in editable text area. if no image added then the URL remain uneditable.
if([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook])
{
mySLComposerSheet = [[SLComposeViewController alloc] init];
mySLComposerSheet = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];
[mySLComposerSheet setInitialText:[NSString stringWithFormat:@"iOS 6 %@ integration test!",mySLComposerSheet.serviceType]];
[mySLComposerSheet addImage:[UIImage imageNamed:@"image.png"]];
[mySLComposerSheet addURL:[NSURL URLWithString:@"http://www.StackOverflow.com/"]];
[self presentViewController:mySLComposerSheet animated:YES completion:nil];
}
what i want is to have the url and image be uneditable in the post. while user still can type extra text. any idea how to do that?