如何将 UIImage 发布到 Facebook
我想将图像从 UIImage 发布到 Facebook,但是此代码需要 imageURL。如何?
- (void)publishFeedWithName:(NSString*)名称 标题文本:(NSString*)标题 图片网址:(NSString*)url 链接地址:(NSString*)href userMessagePrompt:(NSString*)提示 动作标签:(NSString*)标签 动作文本:(NSString*)文本 动作链接:(NSString*)链接 目标 ID:(NSString*)目标{ [自我帖子FeedWithName:名称 标题文本:标题 图片网址:网址 链接地址:href 用户消息提示:提示 动作标签:标签 动作文本:文本 动作链接:链接 目标ID:目标]; }
I want to publish image from UIImage to Facebook however this code needs imageURL. How?
- (void) publishFeedWithName:(NSString*)name
captionText:(NSString*)caption
imageurl:(NSString*)url
linkurl:(NSString*)href
userMessagePrompt:(NSString*)prompt
actionLabel:(NSString*)label
actionText:(NSString*)text
actionLink:(NSString*)link
targetId:(NSString*)target{
[self postFeedWithName:name
captionText:caption
imageurl:url
linkurl:href
userMessagePrompt:prompt
actionLabel:label
actionText:text
actionLink:link
targetId:target];
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您需要获取 JPG 或其他可传输文件图像的图像。这可以使用 UIImageJPEGRepresentation 来完成,如下所示: https://stackoverflow.com/questions /1282830/uiimagepickercontroller-uiimage-memory-and-more
我现在无法访问安装了 Facebook SDK 的盒子以及可以上传图像的示例应用程序,所以我无法判断您目前如何执行此操作的详细信息。但 Facebook SDK 示例包向您展示了如何做到这一点。
First you need to get the image as a JPG or other transmittable file image. That can be done with UIImageJPEGRepresentation as described about halfway down here: https://stackoverflow.com/questions/1282830/uiimagepickercontroller-uiimage-memory-and-more
I don't have access right now to the box where I have the Facebook SDK installed and the example app that can upload an image, so I can't tell you the details of how to do that at present. But the Facebook SDK example package shows you how to do it.