我在Reachability.m第487行看到很多来自HockeyApp的崩溃报告,但我自己无法复制它。
这是围绕该行的代码:
// this makes sure the change notification happens on the MAIN THREAD
dispatch_async(dispatch_get_main_queue(), ^{
[[NSNotificationCenter defaultCenter] postNotificationName:kReachabilityChangedNotification
object:self];
});
崩溃发生在postNotificationName:object:方法。
对于上下文,我使用的是MKNetworkKit,后者又使用了Reachability并导致了这次崩溃。
修改:
崩溃是一个SIGSEGV异常。 here's已提交的示例崩溃报告。
我在支持的所有iOS版本(5.0-7.0)上看到此崩溃。