我在这样的 for 循环中启动多个 AFJSONRequestOperation:
for(NSString *obj in collection)
operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
//NSLog(@"success");
}
failure:nil];
[operation start];
如何确定我的所有操作都已完成?
我猜这些操作已添加到operationQueue
AFHTTPClient 中,但我不确定。不管怎样,我不知道如何访问正在使用的 AFHTTPClient 的实例。