PLCrashReporter无法捕获stackoverflow错误

时间:2015-06-30 21:46:32

标签: ios stack-overflow plcrashreporter

我在很长一段时间内使用Plcrashreporter,在我的应用程序中获取崩溃的堆栈跟踪。我正在使用的PLcrashreporter能够回复诸如uncaughtexception,分段错误,索引数组之外的错误。但是当我无法获得stackoverflow错误时。

我正在生成Stack Overflow错误,如下所示:

- (IBAction)generateStackOverFlowError:(id)sender {
    //Creating Stack Overflow Error
    [CrashViewController recurse];
}

+(void)recurse{
    [self recurse];
}

我的应用程序正在崩溃,但是PLcrashreporter无法抓住它。是因为这个递归函数消耗了整个堆栈吗?或者之前遇到过这种情况的人。?

0 个答案:

没有答案