It may be a newb questions, but still.
I’m working on iOS 6 application for iPhone and iPad, and i’m working on hybrid application Javascript\UIWebView + Objective C
The problem is that i have an internal exception in Private framework. This exception is caused by something that is inside a Javascript\UIWebView. And i don’t know what Javascript code causing an exception.
So i wan’t to do this:
1) Somehow “skip\shallow” crash
2) Using remote Safari debugger, get some info from application
So my question is, is there a way to “skip\shallow” crash, to make my application work for at least few seconds.
I think your only chance to deal with this is by placing log traces all over your javascript, so you can track down where the crash is happening.
To do this, you might find useful this S.O. post showing how you can have JS log to your Xcode console.