通过 iOS 获取 Facebook 图片时出现问题
我正在尝试通过 iOS 上的 Facebook 连接获取事件和个人资料图片, 例如,我已经发出了请求:
[facebook requestWithGraphPath:@"me/picture" andDelegate:self];
和响应处理方法:
(void)request:(FBRequest *)request didLoad:(id)result {
NSString *url = [[NSString alloc] initWithData:result encoding:NSUTF8StringEncoding];
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:url]];
imageView.image = [UIImage imageWithData:data];
}
并且它不起作用,结果变量类型是 NSConcreteMutableData 并且 url 变量值为 null。
请帮忙:) 谢谢。
I'm trying to fetch events and profile pictures via Facebook connect on iOS,
I've made for example the request:
[facebook requestWithGraphPath:@"me/picture" andDelegate:self];
and the response handling method:
(void)request:(FBRequest *)request didLoad:(id)result {
NSString *url = [[NSString alloc] initWithData:result encoding:NSUTF8StringEncoding];
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:url]];
imageView.image = [UIImage imageWithData:data];
}
and it won't work, the result variable type is NSConcreteMutableData and the url variable value is null.
help please :)
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
NSConcreteMutableData 是实际的图像数据,而不是它的 URL。你所需要的只是
The NSConcreteMutableData is the actual image data, not its URL. All you needed was
请尝试我之前提出的解决方案。它对你有用吗?
如何通过我的 iPhone 应用程序中的 fbconnect 获取用户的 Facebook 个人资料图片?
Please try the solution I've proposed earlier. Does it work for you?
how to get user's facebook profile pic via fbconnect in my app iphone?
https://github.com/jonasman/JNSocialDownload
试试这个库,你甚至可以获得 twitter
https://github.com/jonasman/JNSocialDownload
Try this lib, you can even get twitter