1

我是 Xcode 的新手,所以请耐心等待。

我想从网站(不仅仅是图片的 URL)中获取图片和文本并将其连接到 UIImageWiev。例如:这是一个 ebay 项目的 URL:

http://www.ebay.com/itm/Apple-iPod-touch-4th-Generation-Black-8-GB-ipod-4-/300858009687?pt=Other_MP3_Players&hash=item460c88e857

假设我想拍摄显示该项目的图片并将其添加到 UIImageView,并获取标题(Apple iPod touch 第 4 代黑色 (8 GB) ipod 4)并将其添加到标签。我该怎么做?

图片的 URL 可以在页面的源代码中找到,但我不知道如何访问它并仅提取图片的 URL。

我希望能够对任何 ebay 项目执行此操作。

希望你能理解我的问题。

4

1 回答 1

0
NSURL *url = [NSURL URLWithString:@"http://img.abc.com/noPhoto4530.gif"];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *image = [UIImage imageWithData:data];
UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
于 2013-02-11T18:11:07.977 回答