Is it possible to invoke an app automatically when it encounters a crash in iPhone/iPad? If so, any pointers will certainly help. Thanks!
+1
A:
That's not possible so design your app NOT to crash instead :)
willcodejavaforfood
2010-10-13 11:01:15
A:
I've not tried this, but there's a reasonable chance you can run code when the app crashes by installing signal handlers in the standard C way for SIGABRT, SIGSEGV, etc.
However I have no idea how you'd make your app relaunch.
As others have said, the best approach is to stop your app crashing - that's what everyone else does.
JosephH
2010-10-13 11:08:10
Actually, it's what everyone else *tries* to do.
JeremyP
2010-10-13 13:48:24