我正在尝试在currentQueue上运行AFURLConnectionOperation
,因为我想保持主线程免费用于用户interatoin,但是当我调用mainQeue时没有任何反应。
但是,如果我在mainQueue上调用相同的AFURLConnectionOperation
,则效果非常好。
请参阅以下代码
// Send Batch
NSArray *operations = [AFURLConnectionOperation batchOfRequestOperations:mutableOperations progressBlock:^(NSUInteger numberOfFinishedOperations, NSUInteger totalNumberOfOperations) {
NSLog(@"%lu of %lu complete", (unsigned long)numberOfFinishedOperations, (unsigned long)totalNumberOfOperations);
} completionBlock:^(NSArray *operations) {
// check batch response
NSError *error;
for (AFHTTPRequestOperation *op in operations) {
if (op.isCancelled){
return ;
}
if (op.responseObject){
// Current JSON Batch complete
NSMutableArray *jsonObject = [NSJSONSerialization JSONObjectWithData:op.request.HTTPBody options:kNilOptions error:&error];
// Update sent_flag using current chunk
[[SyncModel sharedInstance] updateSentFlag:jsonObject];
}
if (op.error){
error = op.error;
NSLog(@"Error == %@", error);
}
}
}];
然后我最后调用以下代码中的一个或另一个
[[NSOperationQueue mainQueue] addOperations:operations waitUntilFinished:NO]; // this works
[[NSOperationQueue currentQueue] addOperations:operations waitUntilFinished:NO]; // this dose not work
答案 0 :(得分:2)
原因是
您可以在正在运行的操作对象中使用此方法来获取对启动它的操作队列的引用。从正在运行的操作的上下文之外调用此方法通常会导致返回nil。
所以,我想,如果你记录[NSOperationQueue currentQueue]
,那就是nil
如果您想要新队列,请使用
[[NSOperationQueue alloc] init];
答案 1 :(得分:0)
在队列上添加操作后,如果操作最终没有启动,那么有两种方法可以执行它们。
使用等待块,例如在使用XCTest框架的单元测试期间,使用
XCTestExpectation *expectation1 = [self expectationWithDescription:@"ExtractColorsInternal function call on NSOperationQueue"];
dispatch_async(dispatch_get_main_queue(), ^{
[expectation1 fulfill];
});
[self waitForExpectationsWithTimeout:1000 handler:^(NSError *error) {
if (error != nil) {
NSLog(@"Error: %@", error.localizedDescription);
}
}];
调用CFRunLoopRun(),它将成功执行当前队列中的当前操作