ここで問題が 2 つあるのか、それとも 1 つだけなのかわかりません。Google Calendar API から複数の JSON ファイルをダウンロードし、すべての結果を単一の NSDictionary または NSMutableDictionary に結合しようとしています。
client = [[AFHTTPClient alloc] init];
[client.operationQueue setMaxConcurrentOperationCount:1];
eventData = [NSMutableDictionary dictionary];
NSMutableArray *operations = [[NSMutableArray alloc] init];
for (int i = 0; i < calendars.count; i++){
NSString *calendarID = [calendars objectAtIndex:i];
NSString *urlString = [NSString stringWithFormat:@"https://www.googleapis.com/calendar/v3/calendars/%@/events?key=%@&singleEvents=true&orderBy=startTime",calendarID,apiKey];
NSURL *url = [NSURL URLWithString:urlString];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
NSDictionary *add = JSON;
[eventData addEntriesFromDictionary:add];
if (i == calendars.count-1) {
[self parseData];
}
} failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {
NSLog(@"AFJSONRequest failed with request: %@, and with error: %@",request, error);
}];
[operations addObject:operation];
}
[client enqueueBatchOfHTTPRequestOperationsWithRequests:operations progressBlock:nil completionBlock:^(NSArray *operations) {
NSLog(@"DONE");
}];
このコードの AFJSONRequestOperations は実行されません。AFHTTPClient en バッチの代わりに NSOperationQueue に配置することで、それらを実行することができましたが、すべてのデータが 1 つの辞書にあるわけではなく、最後に実行されたものだけです。さらに、このように使用できると想定していた AFHTTPClient のような素敵な進行ブロックと完了ブロックがありません。
AFHTTPClient operationQueue を機能させると、複数の辞書を非同期的に結合する問題も解決しますか?