开发者

iPhone sdk read crash files programmatically?

开发者 https://www.devze.com 2023-03-04 15:28 出处:网络
I want to read crash fil开发者_如何学JAVAes programmatically. How can I do this? I am allowed to do this? Will my application be rejected if I do this?

I want to read crash fil开发者_如何学JAVAes 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.


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.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号