我使用 SocialFramework 将图像发布到 facebook。当我单击按钮时,Facebook 页面正在打开。但我的需要是,我需要分享我的图片而不是在我的墙上,分享到以下 Facebook 页面https://www.facebook.com/Google
代码:
if([SLComposeViewController isAvailableForServiceType:SLServiceTypeFacebook]) {
SLComposeViewController *controller = [SLComposeViewController composeViewControllerForServiceType:SLServiceTypeFacebook];
[controller setInitialText:@"My image"];
[controller addImage:newImage.image];
[self presentViewController:controller animated:YES completion:Nil];
}