Use symbolicate for questions related to debugging a compiled program which has crashed by annotating stack traces with function names, file paths, and line numbers
I have used this code as an UncaughtExceptionHandler for my app to capture some crash information and return it back to me:
NSArray *callStack = [exception callStackReturnAddresses];
int i,len = [callStack count];
// void **frames = new void…
My app is occasionally crashing for some users and I have been unable to replicate the problem.
I have managed to get a few crash reports from one of the users which I have imported to Xcode, but I am unable to symbolicate the reports fully with…
I am attempting to symbolicate a crash file but it appears xcode can not match the dsym file to the crash report.
Having done a bit of research I found the dsym file for my archive and when I go into getinfo and look at "more info:" it displays…
I've only noticed this problem in one crash log, and I can't quite get my head around why this is occurring. Basically, I have symbolicated a crash log from a customer, and it all checks out and symbolicates correctly, except for one frame, which…