我正在尝试使用SLComposeViewController在Facebook上分享照片和网址。只有URL显示在预览和新闻源中。
似乎URL会覆盖您要分享的任何图像内容。我正在使用iOS 9.2,在设备上安装了Facebook应用程序50.0
以下是我正在使用的代码:
SLComposeViewController *fbController = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];
//setting completion handler omitted
[fbController addImage:self.image]; //any image
[fbController addURL:[NSURL URLWithString:url]];
[self presentViewController:fbController animated:YES completion:nil];
任何想法如何解决这个问题?