我的项目中有各种类的方法,例如methodA(),methodB(),methodC()... methodZ()。每种方法都使用NSOperation执行网络调用。在某些情况下,我必须并行执行方法,如方法A,D,M应该并行执行。换句话说,方法D,S,T应该并行执行。我在APIManager类中维护一个常用方法,它执行我的所有方法。
我尝试在APIManager类中创建一个操作队列,但它不起作用。只有在方法执行完成后,才会执行另一个方法执行。谁能在这方面提出建议?
-(void) methodA {
NSString *path = [NSString stringWithFormat:kPath, @“Function1”];
NSString *requestXML = [NSString stringWithFormat:kGetFunction1RequestXML];
self.operation = [self.apiMgr requestWithPath:path method:@"POST" xml:requestXML headers:@{@"Accept": @"application/xml", @"Content-Type": @"application/xml"}
success:^(id response) {
NSLog(@“Request successful. Do further handling”);
}
failure:^(NSError *error) {
NSLog(@“failed”);
}];
}
- (void)methodB {
NSString *path = [NSString stringWithFormat:kPath, @“Function2”];
NSString *requestXML = [NSString stringWithFormat:kGetFunction2RequestXML];
self.operation = [self.apiMgr requestWithPath:path method:@"POST" xml:requestXML headers:@{@"Accept": @"application/xml", @"Content-Type": @"application/xml"}
success:^(id response) {
NSLog(@“Request successful. Do further handling”);
}
failure:^(NSError *error) {
NSLog(@“failed”);
}];
}
- (id)requestWithPath:(NSString *)path method:(NSString *)method xml:(NSString *)requestXML headers:(NSDictionary *)headers success:(void(^)(id response))success failure:(void(^)(NSError *error))failure
{
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@“%@, self.serverAddress]];
AFHTTPClient *client = [AFHTTPClient clientWithBaseURL:url];
if (headers) {
for (NSString *header in headers) {
[client setDefaultHeader:header value:headers[header]];
}
}
[client setParameterEncoding:AFJSONParameterEncoding];
NSMutableURLRequest *request = nil;
request = [client requestWithMethod:method path:path parameters:nil];
[request setHTTPBody:[requestXML dataUsingEncoding:NSUTF8StringEncoding]];
AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
[self.operationQueue addOperation:operation];
[operation setAuthenticationAgainstProtectionSpaceBlock:^BOOL(NSURLConnection *connection, NSURLProtectionSpace *protectionSpace)
{
return YES;
}];
[operation setAuthenticationChallengeBlock:^(NSURLConnection *connection, NSURLAuthenticationChallenge *challenge)
{
[challenge.sender useCredential:[NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust] forAuthenticationChallenge:challenge];
[challenge.sender continueWithoutCredentialForAuthenticationChallenge:challenge];
}];
[operation setShouldExecuteAsBackgroundTaskWithExpirationHandler:^{
LogVerbose(@"Background time expired for AFNetworking...");
}];
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
NSString *xmlStr = [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding];
NSDictionary *xmlDic = [NSDictionary dictionaryWithXMLString:xmlStr];
if (success)
success(xmlDic);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
if (failure) {
failure(error);
}
}];
return nil;
}
答案 0 :(得分:0)
您尚未共享任何正在实施的代码。
NSOperationsQueue
只接受NSOperation
,您必须提供MaxConcurrentOperationCount
属性来告诉队列您要并行执行多少操作。
在您的情况下,您定义了方法:methodA(),methodB(),methodC()... methodZ()。每种方法都使用NSOperation
执行网络呼叫。但是你在NSOperationsQueue
中添加了什么,你还没有提到。