如果尝试将图像添加到 facebook 帖子中,则使用 ios6 中的社交框架,添加的 URL 将变得可编辑。URL 出现在可编辑的文本区域中。如果没有添加图像,则 URL 仍然不可编辑。
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];
}
我想要的是让 URL 和图像在帖子中不可编辑。而用户仍然可以输入额外的文本。知道怎么做吗?