码迷,mamicode.com
首页 > 移动开发 > 详细

【iOS开发】关于图片加载的第三方框架SDWebImage的使用

时间:2015-06-12 17:33:25      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

SDWebImage是一个第三方框架,用于加载网络图片,还有其他一些好的功能

使用步骤

下载地址
https://github.com/rs/SDWebImage

下载以后解压,解压以后是下图

技术分享

然后将文件中的SDWebImage文件夹拖到项目中,然后在项目中使用

使用框架

#import "SDWebImage/UIImageView+WebCache.h"//引入头文件



-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *ID = @"video";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

    if(cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID];
    }

    NSString *imageUrl = [NSString stringWithFormat:@"http://192.168.1.101:8080/TFServer/%@", video.image];

    //使用这个框架
    [cell.imageView setImageWithURL:[NSURL URLWithString:imageUrl] placeholderImage:[UIImage imageNamed:@"4.jpg"]];

    return cell;
}

【iOS开发】关于图片加载的第三方框架SDWebImage的使用

标签:

原文地址:http://blog.csdn.net/ttf1993/article/details/46471965

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!