1

这是我的代码:

Reachability *r = [Reachability reachabilityWithHostname:host];    
r.reachableBlock = ^(Reachability*reach)
{
    // Update the UI on the main thread

    });
};    
r.unreachableBlock = ^(Reachability*reach)
{
    // Update the UI on the main thread with error alert

    });
};    
[r startNotifier]; 

运行最后一条语句后,我记录了以下错误,并且它从不执行任何reachableBlockor unreachableBlock

 SCNetworkReachabilitySetDispatchQueue() failed: Permission denied

对于任何想知道我已经尝试过的人,我也尝试过:

dispatch_async(dispatch_get_global_queue(0,0), ^{
    [r startNotifier];
});

但这会产生相同的结果。我在这里记录了一个问题。

4

1 回答 1

1

这不再是一个问题。

由于一些神秘的原因,我清理了构建文件夹,重置了 iOS 模拟器,重新启动并重新编译 - 错误消失了。起初我没有成功遵循这些步骤,但只是为了尝试而这样做,它奏效了!

于 2013-07-09T13:41:30.720 回答