转自:http://blog.csdn.net/xn4545945/article/details/37535681
http://blog.csdn.net/heartofthesea/article/details/14127749
1.找到SDImageCache类
2.添加如下方法:
- - (float)checkTmpSize
- {
- float totalSize = 0;
- NSDirectoryEnumerator *fileEnumerator = [[NSFileManager defaultManager] enumeratorAtPath:diskCachePath];
- for (NSString *fileName in fileEnumerator)
- {
- NSString *filePath = [diskCachePath stringByAppendingPathComponent:fileName];
-
- NSDictionary *attrs = [[NSFileManager defaultManager] attributesOfItemAtPath:filePath error:nil];
-
- unsigned long long length = [attrs fileSize];
-
- totalSize += length / 1024.0 / 1024.0;
- }
-
-
- return totalSize;
- }
新版的SDImageCache类,已增加此方法
- [[SDImageCache sharedImageCache] getSize];
3.在设置里这样使用
- #pragma 清理缓存图片
-
- - (void)clearTmpPics
- {
- [[SDImageCache sharedImageCache] clearDisk];
-
-
-
- DLog(@"clear disk");
-
- float tmpSize = [[SDImageCache sharedImageCache] checkTmpSize];
-
- NSString *clearCacheName = tmpSize >= 1 ? [NSString stringWithFormat:@"清理缓存(%.2fM)",tmpSize] : [NSString stringWithFormat:@"清理缓存(%.2fK)",tmpSize * 1024];
-
- [configDataArray replaceObjectAtIndex:2 withObject:clearCacheName];
-
- [configTableView reloadData];
- }
加载网络图片可以说是网络应用中必备的。如果单纯的去下载图片,而不去做多线程、缓存等技术去优化,加载图片时的效果与用户体验就会很差。
一、自己实现加载图片的方法
tips:
*
iOS
中所有网络访问都是异步的
.(
自己
开线程去下载
)
*
普通
为
模型
增加
UIImage
属性
的方法做的是
内存缓存
(
下次启动还需要从网络重新加载
)
,
而要做本地缓存的话
,
还要自己手动
存储网络上下载的图片
.
*
为了加快访问
,
还需要自己去弄
缓存
.
(
内存缓存或者本地缓存
)
*
当图片没有下载完成时,还要设置
占位图片
。
以下代码用NSOperation开异步线程下载图片,当下载完成时替换占位图片。
-
-
-
-
-
-
-
-
- #import "XNViewController.h"
- #import "XNApp.h"
-
- @interface XNViewController ()
- @property (nonatomic, strong) NSArray *appList;
- @property (nonatomic, strong) NSOperationQueue *queue;
- @end
-
- @implementation XNViewController
- #pragma mark - 懒加载
-
- - (NSOperationQueue *)queue {
- if (!_queue) _queue = [[NSOperationQueue alloc] init];
- return _queue;
- }
-
-
- - (NSArray *)appList {
- if (!_appList) {
-
- NSURL *url = [[NSBundle mainBundle] URLForResource:@"apps.plist" withExtension:nil];
- NSArray *array = [NSArray arrayWithContentsOfURL:url];
-
- NSMutableArray *arrayM = [NSMutableArray array];
- [array enumerateObjectsUsingBlock: ^(id obj, NSUInteger idx, BOOLBOOL *stop) {
- [arrayM addObject:[XNApp appWithDict:obj]];
- }];
- _appList = [arrayM copy];
- }
- return _appList;
- }
-
- - (void)viewDidLoad {
- [super viewDidLoad];
-
- self.tableView.rowHeight = 88;
-
-
- }
-
- #pragma mark - 数据源方法
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return self.appList.count;
- }
-
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- static NSString *ID = @"Cell";
- UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
-
-
- XNApp *app = self.appList[indexPath.row];
- cell.textLabel.text = app.name;
-
-
- if (!app.image) {
- cell.imageView.image = [UIImage imageNamed:@"user_default"];
-
- [self downloadImg:indexPath];
- }
- else {
-
- cell.imageView.image = app.image;
- }
-
-
- return cell;
- }
-
-
- - (void)downloadImg:(NSIndexPath *)indexPath {
- XNApp *app = self.appList[indexPath.row];
-
- [self.queue addOperationWithBlock: ^{
- NSData *imgData = [NSData dataWithContentsOfURL:[NSURL URLWithString:app.icon]];
- UIImage *image = [UIImage imageWithData:imgData];
-
-
- [[NSOperationQueue mainQueue] addOperationWithBlock: ^{
-
- app.image = image;
-
- [self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
- }];
- }];
- }
-
- @end
上述代码只是做了内存缓存,而每次重新进入应用时,还会从网上重新下载。如果要继续优化上面的代码,需要自己去实现本地缓存。
二、使用第三方框架SDWebImage。(非常优秀)
*
特点
:
依赖的库很少
.功能全面。
*
自动实现
磁盘缓存
:
*
缓存图片名字是以
MD5
进行加密的
后的名字进行命名
.(
因为加密那堆字串是唯一的
)
*
[imageView
sd_setImageWithURL
:v.fullImageURL
placeholderImage:[UIImage
imageNamed:@”xxxxx”]].
*
就一个方法就实现了
多线程
\
带缓冲等效
果
.
(
可用带参数的方法
,
具体可看头文件
)
用SDWebImage修改上面的方法后的代码可简化为:
- #pragma mark - 数据源方法
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return self.appList.count;
- }
-
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- static NSString *ID = @"Cell";
- UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
-
-
- XNApp *app = self.appList[indexPath.row];
- cell.textLabel.text = app.name;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- [cell.imageView sd_setImageWithURL:[NSURL URLWithString:app.icon] placeholderImage:[UIImage imageNamed:@"user_default"]];
-
-
- return cell;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- @end
SDWebImage中的一些参数:
*
SDWebImageRetryFailed = 1<< 0,
默认选项,失败后重试
*
SDWebImageLowPriority = 1<< 1,
使用低优先级
*
SDWebImageCacheMemoryOnly = 1<< 2,
仅仅使用内存缓存
*
SDWebImageProgressiveDownload = 1<< 3,
显示现在进度
*
SDWebImageRefreshCached = 1<< 4,
刷新缓存
*
SDWebImageContinueInBackground =1 << 5,
后台继续下载图像
*
SDWebImageHandleCookies = 1<< 6,
处理
Cookie
*
SDWebImageAllowInvalidSSLCertificates= 1 << 7,
允许无效的
SSL
验证
*
SDWebImageHighPriority = 1<< 8,
高优先级
*
SDWebImageDelayPlaceholder = 1<< 9
延迟显示占位图片