你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS tableView上拉刷新顯示下載進度的問題及解決辦法

iOS tableView上拉刷新顯示下載進度的問題及解決辦法

編輯:IOS開發綜合

一,點擊下載按鈕後,調用的時a.networking的downLoad方法,具體代碼如下

@interface ViewController ()<UITableViewDelegate,UITableViewDataSource>
{
  XLCircleProgress *_circle;
  CGFloat _progress;
}
@property (strong,nonatomic) NSURLSessionDownloadTask *downloadTask;
@property (strong,nonatomic) UITableView *tableView;
@property (strong,nonatomic) NSMutableArray *dataSource;
@end
- (void)request:(NSInteger)index{
  //下載
  NSURL *URL = [NSURL URLWithString:@"http://song.90uncle.com/upload/media/e366a607d222442f83ed7028c4d7118e_20170227110100.mp4"];
  NSURLRequest *request = [NSURLRequest requestWithURL:URL];
  AFHTTPSessionManager *manger = [AFHTTPSessionManager manager];
  manger.responseSerializer = [AFJSONResponseSerializer serializer];
  _downloadTask= [manger downloadTaskWithRequest:request progress:^(NSProgress * _Nonnull downloadProgress) {
    NSLog(@"%f",downloadProgress.fractionCompleted);
    _progress = downloadProgress.fractionCompleted;
    // 開一個異步線程,放到主隊列裡面刷新數據
    dispatch_async(dispatch_get_main_queue(), ^{
      [self reloadCell:index];
    });
  } destination:^NSURL *(NSURL *targetPath, NSURLResponse *response) {
    //獲取沙盒cache路徑
    NSURL * documentsDirectoryURL = [[NSFileManager defaultManager] URLForDirectory:NSCachesDirectory inDomain:NSUserDomainMask appropriateForURL:nil create:NO error:nil];
    return [documentsDirectoryURL URLByAppendingPathComponent:[response suggestedFilename]];
  } completionHandler:^(NSURLResponse *response, NSURL *filePath, NSError *error) {
    if (error) {
      NSLog(@"失敗");
    } else {
       NSLog(@"成功");
    }
  }];
  [_downloadTask resume];
}
- (void)reloadCell:(NSInteger)index{
  // 修改對應的數據源
  NSMutableDictionary *dic = [[NSMutableDictionary alloc]init];
  [dic addEntriesFromDictionary:self.dataSource[index]];
  [dic removeObjectForKey:@"progress"];
  [dic setObject:@(_progress) forKey:@"progress"];
  [self.dataSource replaceObjectAtIndex:index withObject:dic];
  // 刷新某一個cell
  NSIndexPath *indexPath = [NSIndexPath indexPathForRow:index inSection:0];
  [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationNone];
}

問題:如果是但一個下載刷新是可以的,但是多個任務同時進行的話,就會來回的數據交換

解決方法一:在網上查了好多資料,發現是不能實時刷新cell的,不管是單個還是多個,因為刷新會出現界面跳動的現象,當然是不是有其他的方法可以解決,這也是有可能的。

解決方法二:直接在異步裡面實時賦值(找到相應的cell),這樣就可以避免因刷新cell帶來的界面跳動的現象,具體看代碼:

但是這樣還存在了,刷新時已經下載了的cell進度條會出現歸零的現象,刷新過後會還原到正常值,然而,如果是下載完事了再刷新,直接就是0了,這應該是cell復用導致的,那麼接下來就來解決刷新歸零的問題。

// 找到相應的cell的indexPath
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:index inSection:0];
MyTableViewCell *cell = (MyTableViewCell *)[_tableView cellForRowAtIndexPath:indexPath];
    dispatch_async(dispatch_get_main_queue(), ^{
  // 這樣網上說這樣會耗費cpu資源,我親測後,基本不費資源,還有就是怕內存洩露等問題,但是現在還沒撲捉到,以後發現不妥之處了,再加修正
      cell.progress.progress = _progress;
//      [self reloadCell:index];
    });

下面是cell復用的機制,如果在裡面不給進度條付初值,就不會在刷新的時候出現歸零的問題

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  MyTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell" forIndexPath:indexPath];
  cell.selectionStyle = NO;
  cell.title.text = self.dataSource[indexPath.row][@"title"];
//  cell.progress.progress = [self.dataSource[indexPath.row][@"progress"] floatValue];
  return cell;
}

[db:作者簡介][db:原文翻譯及解析]

【iOS tableView上拉刷新顯示下載進度的問題及解決辦法】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved