报告哪个方法导致了我的 NSException?

发布于 2024-12-04 19:19:20 字数 309 浏览 1 评论 0原文

我正在使用 Flurry Analytics,它报告我的应用程序崩溃,效果很好,只是我不知道哪种方法导致了崩溃。

我正在捕获这样的未捕获的异常:

{
    [FlurryAnalytics logError:@"Uncaught" message:[NSString stringWithFormat:@"Crash! %@", [[UIDevice currentDevice] uniqueIdentifier]] exception:exception];

}

如果我只能看到哪种方法,这将是绝对完美的。想法?

I am using Flurry Analytics which reports my app crashes, works great except I don't know which method caused the crash.

I am catching the uncaught exceptions like this:

{
    [FlurryAnalytics logError:@"Uncaught" message:[NSString stringWithFormat:@"Crash! %@", [[UIDevice currentDevice] uniqueIdentifier]] exception:exception];

}

If I could only see which method this would be absolutely perfect. Thoughts?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

滿滿的愛 2024-12-11 19:19:20

使用

NSlog(@"function that crashed %s",__FUNCTION__);

这是编译器的扩展并且工作正常。

更新

从当前线程使用获取完整的调用堆栈:

[NSThread callStackSymbols]

这为您提供了 NSString 形式的调用堆栈。

Use

NSlog(@"function that crashed %s",__FUNCTION__);

This is an extension to the compiler and works fine.

UPDATE

to get the complete call stack from the current thread use:

[NSThread callStackSymbols]

which gives you the call stack as NSString.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文