2014-01-23 43 views
0

的iOS崩潰報告我從Crashlytics得到崩潰報告。但是我的應用程序在哪裏找不到這個崩潰。 你知道這個崩潰是相關的嗎? 請讓我知道。提前致謝。爲UIKit- [UIApplication的sendAction]

UIKit-[UIApplication sendAction:to:from:forEvent:] 
0 Crashed: com.apple.main-thread 
EXC_BAD_ACCESS KERN_INVALID_ADDRESS at 0xf000000c 

Thread : Crashed: com.apple.main-thread 
0 libobjc.A.dylib    0x3b1eab26 objc_msgSend + 5 
1 UIKit       0x330f5713 -[UIApplication sendAction:to:from:forEvent:] + 90 
2 UIKit       0x330f56b3 -[UIApplication sendAction:toTarget:fromSender:forEvent:] + 30 
3 UIKit       0x330f5691 -[UIControl sendAction:to:forEvent:] + 44 
4 UIKit       0x330e111f -[UIControl _sendActionsForEvents:withEvent:] + 374 
5 UIKit       0x330f5107 -[UIControl touchesEnded:withEvent:] + 590 
6 UIKit       0x330f4dd9 -[UIWindow _sendTouchesForEvent:] + 528 
7 UIKit       0x330efe65 -[UIWindow sendEvent:] + 832 
8 UIKit       0x330c579d -[UIApplication sendEvent:] + 196 
9 UIKit       0x330c3fa3 _UIApplicationHandleEventQueue + 7098 
10 CoreFoundation     0x30919183 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 14 
11 CoreFoundation     0x30918653 __CFRunLoopDoSources0 + 206 
12 CoreFoundation     0x30916e47 __CFRunLoopRun + 622 
13 CoreFoundation     0x30881c27 CFRunLoopRunSpecific + 522 
14 CoreFoundation     0x30881a0b CFRunLoopRunInMode + 106 
15 GraphicsServices    0x35582283 GSEventRunModal + 138 
16 UIKit       0x33125049 UIApplicationMain + 1136 
17 Tapastic      0x000f3897 main + 16 (main.m:16) 

回答

0

您是否有異常斷點?

如果沒有,你應該去休息讓他們點選項卡單擊+,然後單擊例外。再次運行它,它應該告訴你它到底崩潰的位置,並在此時停止應用程序。

如果你遇到問題並不能解決問題,我會在啓動時記錄每個方法,然後在崩潰時檢查最後一次運行的方法,然後在後面添加更多的NSLog每行代碼。告訴你確切的地點。

+0

這不是在Xcode中。 Crashlytics收到了例外。 –

+1

哦,我感到愚蠢。抱歉。至於它是來自最試圖使用的一些釋放對象。可能是罕見的崩潰。 – Charlie

0

對我來說,當我故意添加一個除以0語句時,我得到了這個。然而,該應用程序顯示OP提到的相同的東西,所以我想這可能有多種原因。

相關問題