我正在使用NSXMLParser
并且我想将来自 XML 的图像显示为<url>
使用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;
但图像永远不会出现。我可以在日志中看到结果。
请指教。