1

我的应用程序以 Ad-Hoc Build 的形式分发,在某些设备上崩溃,并带有这样的崩溃日志。

Thread 3 name:  Dispatch queue: com.apple.root.default-priority`
Thread 3 Crashed:
0   CoreFoundation                  0x3551d296 CFRelease + 14
1   MyApp                           0x00145dae 0xdf000 + 421294
2   MyApp                           0x00145f6a 0xdf000 + 421738
3   MyApp                           0x0010259c 0xdf000 + 144796
4   MyApp                           0x000e36ca 0xdf000 + 18122
5   libdispatch.dylib             0x34461c52 _dispatch_call_block_and_release + 6
6   libdispatch.dylib             0x34464810 _dispatch_worker_thread2 + 252
7   libsystem_c.dylib             0x32991df4 _pthread_wqthread + 288
8   libsystem_c.dylib             0x32991cc8 start_wqthread + 0

我不知道我能从这个日志中得到什么线索。=(

4

1 回答 1

2

首先将堆栈上的地址转换为您可以在代码中找到的符号名称。苹果在这里有一个关于它的技术说明:http: //developer.apple.com/library/ios/#technotes/tn2151/_index.html

于 2012-08-18T13:57:49.810 回答