这就是我正在做的事情。
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。但同样,我的可达性控制器确实通知用户当前的网络可用性,所以在某些时候我将不得不再次使用主队列。
我坚信一定有更好的方法。