从XML显示图像

时间:2012-06-10 09:00:17

标签: ios uiimageview nsxmlparser nsdata nsurl

我正在使用NSXMLParser,我想使用<url>将XML中的图像显示为UITableViewCell节点。

在表格视图的cellForRowAtIndexPath中,我正在使用此代码:

NSURL * imageURL = [NSURL URLWithString:[[stories objectAtIndex:indexPath.row] 
                           objectForKey:@"url"]];

NSData * imageData = [NSData dataWithContentsOfURL:imageURL];

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

cell.imageView.image = newsPhoto;

但是图像永远不会出现。我可以在日志中看到结果。

请告知。

0 个答案:

没有答案