我正在尝试使用FBWebDialogs共享本地UIImage。但我得到任何解决方案,将使用FBWebDialogs共享本地图像。任何人都可以告诉我,我如何使用FBWebDialogs共享本地UIImage? 注意:我的iOS应用程序完全是本地的。所以我无法获取图片网址。
这是我的代码
-(void)shareInformationUsingFeedDialogWithParameters:(NSDictionary*)params
{
[FBWebDialogs presentFeedDialogModallyWithSession:nil
parameters:params
handler:
^(FBWebDialogResult result, NSURL *resultURL, NSError *error)
{
if (error)
{
[self showAlertWithTitle:@"Error" andMessage:@"An error occured while sharing information using Facebook"];
}
else
{
if (result == FBWebDialogResultDialogNotCompleted)
{
[self showAlertWithTitle:@"Alert" andMessage:@"You cancelled the Facebook sharing"];
}
else
{
[self showAlertWithTitle:@"Success" andMessage:@"Facebook sharing successful"];
}
}
}];
}