uitablceviewcell用SDWebImage加载图片,第一次无法显示
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
cell.textLabel.text = @"标题";
[cell.imageView sd_setImageWithURL:[NSURL URLWithString:@"http://static.open-open.com/j300250n.jpg"] completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {
NSData *fData = UIImageJPEGRepresentation(image, 1.0);
NSLog(@"和火凤凰%@ %d", cell.imageView.image, fData.length);
}];
return cell;
}
如代码。就是加载远程图片。问题就是。页面第一次加载的时候cell里面的图片没有显示。而再执行一次reload之后,图片就显示了。如何解决?以及产生的原因?
另外,我如果使用一张本地图片,则没有这个问题
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论