我的一个用户向我发送了很多崩溃日志,其中大多数人都这样写-
Thread 0 Crashed:
0 libobjc.A.dylib 0x33479466 objc_msgSend + 18
1 CoreFoundation 0x33a770c6 __CFNotificationCenterDarwinCallBack + 18
2 CoreFoundation 0x33a5dbe0 __CFMachPortPerform + 204
3 CoreFoundation 0x33a556f8 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 20
4 CoreFoundation 0x33a556bc __CFRunLoopDoSource1 + 160
5 CoreFoundation 0x33a47f76 __CFRunLoopRun + 514
6 CoreFoundation 0x33a47c80 CFRunLoopRunSpecific + 224
7 CoreFoundation 0x33a47b88 CFRunLoopRunInMode + 52
8 GraphicsServices 0x33b0e4a4 GSEventRunModal + 108
9 GraphicsServices 0x33b0e550 GSEventRun + 56
10 UIKit 0x32099322 -[UIApplication _run] + 406
11 UIKit 0x32096e8c UIApplicationMain + 664
12 Nav 0x00002ea2 main (main.m:14)
13 Nav 0x00002e38 start + 44
这对我来说真的没有任何意义,我是否缺少真正明显的东西?
谢谢,
特雅
最佳答案
有一篇很棒的博客文章,标题为So you crashed in objc_msgSend()。我强烈建议您阅读。它应该教你如何找出这里发生了什么。
关于ios - 调试iOS临时崩溃报告:,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4599437/