UITableViewControllerAにはファイルのリストがありUITabBarController
、UITableViewContollerB にはファイルのアップロードの進行状況が表示されます。
サブクラスを呼び出し、アップロードの進行状況を UITableViewControllerB に通知するためにAFHTTPClient
使用するアップロード メソッドを持つシングルトン クラスがあります。NSNotificationCenter
しかし、この現在の方法では、UI がほとんど使用できないほど遅くなり、プロセスを改善する方法がわかりません。AFNetworking コールバック関数がメイン スレッドで呼び出されることを読みました。NSNotificationCenter からの遅い UI 応答ですか?
また、これをシミュレーターで実行していることにも言及したいと思います。
私の 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];
}
}