亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2020-09-08 05:23:46 來源:腳本之家 閱讀:264 作者:haha_hello 欄目:移動開發

一,點擊下載按鈕后,調用的時afnetworking的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;
}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

额尔古纳市| 台北县| 东山县| 南乐县| 玉溪市| 涡阳县| 富裕县| 务川| 靖西县| 乌拉特后旗| 延川县| 芷江| 忻州市| 揭阳市| 旬阳县| 扶余县| 驻马店市| 澄江县| 康定县| 喀什市| 海淀区| 靖江市| 大埔县| 天门市| 遂平县| 濉溪县| 怀仁县| 恭城| 临湘市| 万安县| 乌拉特前旗| 卢湾区| 东方市| 垫江县| 咸丰县| 安吉县| 吴堡县| 邹城市| 崇礼县| 施秉县| 乳山市|