我有一个UITabBarController
UITableViewControllerA 列表文件和 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];
}
}