孙同生的博客

为美好的世界献上祝福

  • 首页
  • 标签
  • 分类
  • 归档
  • d3学习demo演示
  • 搜索

SDWebImage375源码-壹

发表于 2016-10-10 | 更新于 2018-11-23 | 分类于 essay , SDWebImage | 评论数: | 阅读次数:
本文字数: 21k | 阅读时长 ≈ 19 分钟

0. 图片的异步下载

比如在tableview中:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

static NSString* cellID = @"cellID";

UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:cellID];
if (cell == nil) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
}

[cell.imageView sd_setImageWithURL:[NSURL URLWithString:@"http://www.domain.com/path/to/image.jpg"] placeholderImage:[UIImage imageNamed:@"1.jpg"]];
cell.textLabel.text = @" text ";

return cell;

}
阅读全文 »
<i class="fa fa-angle-left" aria-label="上一页"></i>1…89
SunTongSheng

SunTongSheng

移动端 前端 跨平台

81 日志
22 分类
23 标签
RSS
© 2026 SunTongSheng | 508k | 7:41