需要帮助从网址添加图片!

发布于 2024-10-14 02:17:10 字数 839 浏览 3 评论 0原文

我已经成功地将 twitter api 合并到我的应用程序中,我可以调用所有数据并将其放入我的应用程序中,除了图像。

如果您提供网址,我已经设法找到如何获取图片的方法,但我想从我的字典中获取 addy,然后将其放入我的 uiimageview 中。

任何帮助将不胜感激,这是我来源的

NSData *imageData = [[NSData 分配] initWithContentsOfUrl: [NS字符串 stringWithContentsOfUrl: [NSURL URLWithString:@"http://mydomain.com"] 编码:NSUTF8StringEncoding 错误:无 ] ];

UIImage* image = [[UIImage alloc] initWithData:imageData];

[marcaBackground setImage:image]; [图像数据发布]; [图片发布];

这是我已经设置的`-(NSString*)author {

return [[contents objectForKey:@"user"] objectForKey:@"screen_name"];

`

NSString *author=[(Tweet*)[auth objectAtIndex:indexPath.row] author];

有人可以建议我需要更改什么才能使其工作吗?

i've managed to incorporate the twitter api into my app and i can call all the data and put it into my app, except for the image.

i've managed to find tuts on how to get the picture if you provide the url, but i want to get the addy from my dictionary to then be put into my uiimageview.

Any help would be appreciated, here is what i have sourced

NSData *imageData =
[[NSData alloc] initWithContentsOfUrl:
[NSString
stringWithContentsOfUrl:
[NSURL URLWithString:@"http://mydomain.com"]
encoding: NSUTF8StringEncoding
error: nil
]
];

UIImage* image = [[UIImage alloc] initWithData:imageData];

[marcaBackground setImage:image];
[imageData release];
[image release];

this is what i have already set up`-(NSString*)author {

return [[contents objectForKey:@"user"] objectForKey:@"screen_name"];

`

NSString *author=[(Tweet*)[auth objectAtIndex:indexPath.row] author];

could someone please advise me on what needs changing for it to work??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情释 2024-10-21 02:17:10
NSData *imageData = [[NSData alloc] initWithContentsOfUrl: [NSURL URLWithString:@"http://..."]];

其余的都是正确的。

NSData *imageData = [[NSData alloc] initWithContentsOfUrl: [NSURL URLWithString:@"http://..."]];

The rest is correct.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文