我可以使用 [FBDialogs presentOSIntegratedShareDialogModallyFrom] 通过 SDK 3.5 将图像发布到 facebook 吗?
Posted
技术标签:
【中文标题】我可以使用 [FBDialogs presentOSIntegratedShareDialogModallyFrom] 通过 SDK 3.5 将图像发布到 facebook 吗?【英文标题】:Can I Use [FBDialogs presentOSIntegratedShareDialogModallyFrom] to post image to facebook via SDK 3.5? 【发布时间】:2013-07-26 05:22:25 【问题描述】:当我使用 FBDialogs 将图像发布到 facebook 时,facebook 会在墙上显示“通过 ios”;如何使用 Facebook SDK 3.5 将“通过 iOS”更改为“通过我的应用名称”?
[FBDialogs presentOSIntegratedShareDialogModallyFrom:self
session:[FBSession activeSession]
initialText:@"ABC"
images:image
urls:nil
handler:^(FBOSIntegratedShareDialogResult result, NSError *error)
];
【问题讨论】:
***.com/questions/12547616/… 的可能重复项 不重复,我用的是facebook sdk3.5 如果有人知道请回答这篇文章。 【参考方案1】:使用最新版本的 SDK,您可以使用 presentShareDialogWithPhotoParams
共享图像。请参见下面的示例:
FBShareDialogPhotoParams *photoParams = [FBShareDialogPhotoParams new];
UIImage *screenshot = // Your image...
photoParams.photos = @[screenshot];
[FBDialogs presentShareDialogWithPhotoParams:photoParams
clientState:nil
handler:^(FBAppCall *call, NSDictionary *results, NSError *error)
];
【讨论】:
以上是关于我可以使用 [FBDialogs presentOSIntegratedShareDialogModallyFrom] 通过 SDK 3.5 将图像发布到 facebook 吗?的主要内容,如果未能解决你的问题,请参考以下文章
FBDialogs canPresentMessageDialogWithParams 返回 false
“FBDialogs canPresentShareDialogWithPhotos”总是返回 NO
我可以同时使用 UIPageViewControllers 吗?