我正在使用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;
但是图像永远不会出现。我可以在日志中看到结果。
请告知。