Check progress where is necessary UITableView
我在保存
解释:
服务器上有一个 API,我从中获取数据,然后将其存储在
这是我的代码。
cellForRowAtIndexPath 方法:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
– (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"readyCell"; AVMMovieCell *cell = [self.readyTable dequeueReusableCellWithIdentifier:CellIdentifier]; // Configure the cell… if (cell == nil) { cell = (AVMMovieCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier]; } AVMFilmsStore *oneItem; oneItem = [readyArray objectAtIndex:indexPath.row]; NSNumber *rowNsNum = [NSNumber numberWithUnsignedInt:(unsigned int)indexPath.row]; if (oneItem.ready==1){ if ([selecedCellsArray containsObject:[NSString stringWithFormat:@"%@",rowNsNum]] ) if (![cell.progressLabel.text isEqualToString:@""]&& ![cell.progressLabel.text isEqualToString:@"Success"] && ![cell.progressLabel.text isEqualToString:@"Creating"]){ [cell setSelected:YES]; } NSArray * arrayOfThingsIWantToPassAlong = if(!isMaking){ isMaking = YES; } else { cell.progressLabel.hidden = NO; NSArray * arrayOfThingsIWantToPassAlong = if(!isMaking){ isMaking = YES; } |
和 getProgress 方法:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
–(void)getProgress:(NSArray*)args{
if (progManager == nil && !progStop){ progManager.responseSerializer = [AFJSONResponseSerializer serializer]; oneHundredPercent = @"100"; } } else{ [self getProgress:args]; } } |
任何建议都会对我有所帮助。我为这个问题头疼了两周。
我看到了您的代码,但使用这些大型方法有点难以理解。我不会跟踪数组中的处理单元。每个单元格都有一个对象来表示,这些对象有一个准备好的布尔值和一个进度值,对吧?所以尝试这样的事情:
- 确保每个单元格都有一个 progressView 作为子视图。
- 您的单元类应该有一个名为 styleForReady:(bool)isReady andProgress:(nsinteger)progress 的公共方法
- 为每个模型拨打服务电话以查看它们是否已完成。每当该服务调用返回时,您只需更新数组中的模型对象,并在它们具有新的进度值后执行 [self.tableView reloadData]。这将触发 numberOfRows(它应该返回 arrayOfObjects.count)和 cellForRowAtIndexPath:(它应该为那个 indexPath 出列单元格,获取代表那个单元格的模型,比如 arrayOfObjects[indexPath.row],最后,调用单元格来设置自己的样式基于该模型做 [cell styleForReady:objectModel.ready andProgress:objectModel.progress])
请记住,控制器应该只跟踪模型对象,将单元格出列并告诉单元格设置样式传递模型。不要将所有逻辑都放在控制器中。
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/268709.html