iOS算法或者代码自己尝试等装一下

图片缓存下载

2016-09-21  本文已影响76人  打电话记错号码的人

作品链接:
http://www.jianshu.com/users/1e0f5e6f73f6/top_articles

   1.根据图片的url去images中取图片,存在,将图片显示到cell上
   2.如果不存在,显示占位符
   3.根据图片的url查看operations中存不存在下载操作,存在下载
   4.不存在,创建下载操作放到operations中
   5.下载完毕,保存沙盒,将操作从operations中移除,将图片放入images中
   6.刷新表格
   
 1.根据图片的url去images中取图片,存在,将图片显示到cell上
 2.如果不存在,检查沙盒中存不存在对应的图片,存在,将图片显示到cell上
 3.如果不存在,显示占位符
 4.根据图片的url查看operations中存不存在下载操作,存在下载
 5.不存在,创建下载操作放到operations中
 6.下载完毕,保存沙盒,将操作从operations中移除,将图片放入images中
 7.刷新表格
PHAPP *app = self.apps[indexPath.row];
UIImage *image = [self.images objectForKey:app.icon];
    if (image) {
        cell.imageView.image = image;
    }else
    {
        //缓存路径  搜索路径 YES 能完整展开路径
        NSString *caches = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
        
        //文件名
        NSString *fileName = [app.icon lastPathComponent];
        
        //拼接文件全路径
        NSString *fullPtah = [caches stringByAppendingPathComponent:fileName];
//        NSLog(@"%@",fullPtah);
        
        NSData *data = [NSData dataWithContentsOfFile:fullPtah];
        data = nil; // 沙盒缓存为空
        if (data) {
            UIImage *image = [UIImage imageWithData:data];
             cell.imageView.image = image;
            //保存到内存缓存  写入字典
            [self.images setObject:image forKey:app.icon];
        }else
        {
            // 占位图片
            cell.imageView.image = [UIImage imageNamed:@"占位图片"];
            // 操作缓存 如果图片在操作缓存,就不用下载了
            NSBlockOperation *op = self.operations[app.icon];
            if (op == nil) {
                NSBlockOperation *download = [NSBlockOperation blockOperationWithBlock:^{
                    NSURL *url = [NSURL URLWithString:app.icon];
                    NSData *data = [NSData dataWithContentsOfURL:url];
                    
                    if (data == nil) { // 容错性 data没有值移除返回
                        [self.operations removeObjectForKey:app.icon];
                        return ;
                    }
                    UIImage *image = [UIImage imageWithData:data];
                    
                    [NSThread sleepForTimeInterval:2.0];
                    
                    //保存到内存缓存  写入字典
                    [self.images setObject:image forKey:app.icon];
                    
                    NSLog(@"%zd",indexPath.row);
                    
                    //保存到沙盒
                    [data writeToFile:fullPtah atomically:YES];

                   // 回到主线程,刷新UI界面
                    [[NSOperationQueue mainQueue]addOperationWithBlock:^{
                       // cell.imageView.image = image;
                        // 刷新选中图片的那一行
                        [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
                    }];
                    
                     [self.operations removeObjectForKey:app.icon];
                }];
                
                [self.queue addOperation:download];
                //操作缓存
                self.operations[app.icon] = download;
            }
        }
    }



上一篇下一篇

猜你喜欢

热点阅读