PLCrashReporter - How to symbolicate crash data in-process?
问题 Is there a way to symbolicate the crash reports after we get the crash data? Currently, this is what I'm doing in handleCrashReport method; PLCrashReportTextFormat textFormat = PLCrashReportTextFormatiOS; /* Decode data */ PLCrashReport *crashLog = [[PLCrashReport alloc] initWithData: data error: &error]; if (crashLog == nil) { NSLog(@"Could not decode crash file :%@", [[error localizedDescription] UTF8String]); } else { NSString* report = [PLCrashReportTextFormatter stringValueForCrashReport