当前位置 : 主页 > 网络编程 > 其它编程 >

uitablceviewcell用SDWebImage加载图片,第一次无法显示

来源:互联网 收集:自由互联 发布时间:2023-07-02
1234567891011121314151617181920 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAt 1234567891011121314151617181920 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{   
1234567891011121314151617181920 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAt

1234567891011121314151617181920 - (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之后,图片就显示了。如何解决?以及产生的原因?

另外,我如果使用一张本地图片,则没有这个问题

   

上一篇:easyuiplaceholder无效解决方案
下一篇:没有了
网友评论