我使用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];
}