iPhone sdk read crash files programmatically?

2019-04-10 14:21发布

I want to read crash files programmatically. How can I do this?

I am allowed to do this? Will my application be rejected if I do this?

Any advice, link, tutorial is well come.

2条回答
Animai°情兽
2楼-- · 2019-04-10 14:58

I don't think this is possible (at least on a non jailbroken iOS device). The crash files are written outside the application sandbox and they are transmitted to Apple by iTunes running on a desktop (if user allows it). So when you sync the iOS device with iTunes the crash reports are one of the items that are copied to iTunes.

A compliant App Store iOS application won't be able to read the directory that the crash files are located in.

查看更多
姐就是有狂的资本
3楼-- · 2019-04-10 15:07

I am not sure if its possible. You can’t access the logs themselves, but you can catch uncaught exceptions and generate your own crash logs for which I think you can make use of the following example: http://cocoawithlove.com/2010/05/handling-unhandled-exceptions-and.html

it's very simple and easy to use, just register exception and signal handlers using:

NSSetUncaughtExceptionHandler(&HandleException);
signal(SIGABRT, SignalHandler);
signal(SIGILL, SignalHandler);
signal(SIGSEGV, SignalHandler);
signal(SIGFPE, SignalHandler);
signal(SIGBUS, SignalHandler);
signal(SIGPIPE, SignalHandler);

and get the stack trace using the backtrace method in UncaughtExceptionHandler class.

查看更多
登录 后发表回答