上篇文章給年夜家引見了IOS多線程完成多圖片下載1,本文持續給年夜家引見IOS多線程下載圖片。
此次是用多線程停止圖片的下載與存儲,並且斟酌到下載掉敗,占位圖片的成績(第一張就是下載掉敗的圖片)
閒話少說,上代碼吧,由於有一部門和前次的一樣,所以這裡只上傳紛歧樣的
先給年夜家展現下後果圖:
照舊都是在ViewController.m中
1.
@interface ViewController () //一切數據 @property (nonatomic,strong)NSArray *apps; //內存緩存圖片 @property (nonatomic,strong)NSMutableDictionary *imgCache; /**一切操作*/ @property (nonatomic,strong)NSMutableDictionary *operations; /**隊列對象*/ @property (nonatomic,strong) NSOperationQueue *queue; @end
前兩個和後面的分歧
operations應用來存儲下載圖片的線程操作的字典,重要感化是避免反復下載
queue則是應用多線程時用到的隊列
2.
- (NSOperationQueue *)queue { if (!_queue) { _queue = [[NSOperationQueue alloc] init]; //最年夜並發數 _queue.maxConcurrentOperationCount = 3; } return _queue; }
對queue的初始化,和掌握子線程最多為3條
3.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *ID = @"app"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID]; DDZApp *app = self.apps[indexPath.row]; cell.textLabel.text = app.name; cell.detailTextLabel.text = app.download; //先從內存中掏出圖片 UIImage *image = self.imgCache[app.icon]; if (image) { cell.imageView.image = image; }else { //內存中沒有圖片 //將圖片文件數據寫入到沙盒中 NSString *cachesPath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) firstObject]; //取得文件名 NSString *filename = [app.icon lastPathComponent]; //盤算出文件的全途徑 NSString *file = [cachesPath stringByAppendingPathComponent:filename]; //加載沙盒的文件數據 NSData *data = [NSData dataWithContentsOfFile:file]; //斷定沙盒中能否有圖片 if (data) { //直接加載沙盒中圖片 UIImage *image = [UIImage imageWithData:data]; cell.imageView.image = image; //存到字典(內存)中 self.imgCache[app.icon] = image; }else { //下載圖片 //占位圖片 cell.imageView.image = [UIImage imageNamed:@"place.jpg"]; //先斷定能否有下載義務 //加載掉敗後可以反復下載 NSOperation *operation = self.operations[app.icon]; if (operation == nil) { //這張圖片沒有下載義務 operation = [NSBlockOperation blockOperationWithBlock:^{ NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:app.icon]]; //數據加載掉敗 if(data == nil) { //移除操作 [self.operations removeObjectForKey:app.icon]; return ; } UIImage *image = [UIImage imageWithData:data]; //存到內存中 self.imgCache[app.icon] = image; //回到主線程顯示圖片 [[NSOperationQueue mainQueue] addOperationWithBlock:^{ //會湧現反復占位的成績 //cell.imageView.image = image; //只需找到圖片地點的行便可 [tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone]; }]; //將圖片數據寫入到沙盒中 [data writeToFile:file atomically:YES]; //移除操作 [self.operations removeObjectForKey:app.icon]; }]; //添加到下載隊列 [self.queue addOperation:operation]; //添加到字典 self.operations[app.icon] = operation; } } } return cell; }
此次綁定命據的辦法內容有點多,由於斟酌到了很多細節,不外邏輯和前次的差不多。
有關本文給年夜家引見的IOS多線程完成多圖片下載2 ,小編就給年夜家引見到這裡,願望對年夜家有所贊助!
【IOS多線程完成多圖片下載(二)】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!