如何将操作从主队列转移到后台释放主队列

时间:2013-01-15 12:01:42

标签: ios objective-c grand-central-dispatch dispatch-async

这就是我在做的事。

dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0ul);

dispatch_async(queue, ^{
    NSData* data = [NSData dataWithContentsOfURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://myurl"]]];
    dispatch_sync(dispatch_get_main_queue(), ^{
        if(!data) {
            // data not recieved or bad data. Initiate reachability test
            // I have built a wrapper for Reachability class called ReachabilityController
            // ReachabilityController also notifies the user for avaibility, UI 

            ReachabilityController *reachability = [[ReachabilityController alloc] init];
            [reachability checkReachability];
            return;
        }
        //update table
    });
});

我的问题是在主队列中正在进行可达性测试,这通常会冻结UI。我想以后台模式运行。

我想在后台模式或低优先级模式下处理ReachabilityTest。但同样,我的可达性控制器确实通知用户当前的净可用性,因此在某些时候我将不得不再次使用主队列。

我坚信必须有更好的方法。

1 个答案:

答案 0 :(得分:1)

然而,这是一种正确的方法。它看起来并不完全漂亮,但这并不意味着它是不正确的。如果您希望您的代码看起来“更干净”,您可能需要查看NSThread并逐步完成它,但这是一种更容易实现的方法。

为了使我的项目看起来更容易,我们创建了一个名为dispatcher的简单类,它使用块:

+ (void)dispatchOnBackgroundAsync:(void(^)(void))block {
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), block);
}

+ (void)dispatchOnMainAsync:(void(^)(void))block {
    dispatch_async(dispatch_get_main_queue(), block);
}

像这样使用:

[Dispatcher dispatchOnBackgroundAsync:^{
    // background thread code

    [Dispatcher dispatchOnMainAsync:^{
        // main thread code
    }];
}];