1

我有一个UITabBarControllerUITableViewControllerA 列表文件和 UITableViewContollerB 显示正在上传的文件的进度。

我有一个带有上传方法的 Singleton 类,该方法调用我的子类AFHTTPClient并用于NSNotificationCenter通知我的 UITableViewControllerB 上传进度。但是这种当前的方式正在将 UI 减慢到几乎无法使用的程度,我不确定如何改进这个过程。我读到 AFNetworking 回调函数是在主线程上调用的。缓慢的 UI 响应是否来自我的 NSNotificationCenter?

我还想提一下我正在模拟器上运行它。

我的 Singleton 课程中的方法。

 NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
[dict setObject:uniqueName forKey:@"unique"];
[dict setObject:[NSNumber numberWithFloat:0] forKey:@"progress"];

[self.active addObject:dict];

[[CustomHTTP client] uploadFileName:@"filename" withBytes:data toPath:serverPath progress:^(float progress) {
    [dict setObject:progress forKey:@"progress"];

    NSMutableDictionary *info = [[NSMutableDictionary alloc] init];
    [info setObject:[NSNumber numberWithInt:[self getIndexByUniquename:uniqueName]] forKey:@"row"];
    [[NSNotificationCenter defaultCenter] postNotificationName:@"ProgressNotification" object:self userInfo:info];

} success:^(AFHTTPRequestOperation *operation, id responseObject) {

} andFailure:^(AFHTTPRequestOperation *operation, NSError *error) {

}];

UITableViewControllerB.m

- (void) receiveTestNotification:(NSNotification *) notification    {

if ([[notification name] isEqualToString:@"ProgressNotification"]) {
    NSDictionary *dict = notification.userInfo;

    int row = [[dict objectForKey:@"row"] intValue];

    self.inProgress = [Transfer defaultTransfer].active;

    NSIndexPath *indexPath = [NSIndexPath indexPathForRow:row inSection:0];
    [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:indexPath]
                          withRowAnimation:UITableViewRowAnimationNone];

}
}
4

2 回答 2

1

您正在发送许多通知。重新加载 tableview 单元格是一个有点昂贵的操作。我会将通知的发布限制为仅在一个完整的百分点发生变化时或每秒仅一个。您可以尝试最适合您的方式,但 8300 条通知对于 tableview 来说已经足够处理了。

于 2013-08-07T10:01:21.197 回答
0

我没有调用,而是reloadRowsAtIndexPaths将其更改为查找单元格并以这种方式更新标签。

    for (int i = 0; i < [self.items count]; i++) {
        if ([self.items objectAtIndex:i] == transfer) {
            NSIndexPath *indexPath = [NSIndexPath indexPathForRow:i inSection:0];
            TransferCell *cell = (TransferCell *)[self.tableView cellForRowAtIndexPath:indexPath];
            cell.percentLabel.text = transfer.completed;
            break;
        }
    }
于 2013-12-13T02:57:41.593 回答