2012-09-26 62 views
1

我能夠在xcode 4.5中象徵我的崩潰日誌,除了最後一行。具體來說,崩潰日誌中「線程0」區域中的「Last Exception Backtrace」的第29行和第15行在所有其他線路都不顯示對象或方法調用時。我的代碼是CoachMe1。崩潰日誌沒有完全符號化

任何想法,爲什麼會這樣?

這裏是Symbolicated代碼:

Exception Type: EXC_CRASH (SIGABRT) 
Exception Codes: 0x0000000000000000, 0x0000000000000000 
Crashed Thread: 0 

Last Exception Backtrace: 
0 CoreFoundation     0x3165929e __exceptionPreprocess + 158 
1 libobjc.A.dylib     0x355af97a objc_exception_throw + 26 
2 CoreFoundation     0x316591c0 +[NSException raise:format:] + 100 
3 Foundation      0x34a9ece2 -[NSKeyedUnarchiver initForReadingWithData:] + 2402 
4 CoachMe1      0x000047b6 -[CoachMe1ViewController viewWillAppear:] (CoachMe1ViewController.m:322) 
5 UIKit       0x32b7531c -[UIViewController _setViewAppearState:isAnimating:] + 132 
6 UIKit       0x32b817a0 -[UINavigationController _startTransition:fromViewController:toViewController:] + 536 
7 UIKit       0x32b814ac -[UINavigationController _startDeferredTransitionIfNeeded:] + 320 
8 UIKit       0x32b6fb8e -[UINavigationController pushViewController:transition:forceImmediate:] + 854 
9 UIKit       0x32b6f82e -[UINavigationController pushViewController:animated:] + 34 
10 CoachMe1      0x000183da -[FrontPageViewController loadGameDashboard] (FrontPageViewController.m:38) 
11 UIKit       0x32bf90a8 -[UIApplication sendAction:to:from:forEvent:] + 68 
12 UIKit       0x32bf905a -[UIApplication sendAction:toTarget:fromSender:forEvent:] + 26 
13 UIKit       0x32bf9038 -[UIControl sendAction:to:forEvent:] + 40 
14 UIKit       0x32bf88ee -[UIControl(Internal) _sendActionsForEvents:withEvent:] + 498 
15 UIKit       0x32bf8de4 -[UIControl touchesEnded:withEvent:] + 484 
16 UIKit       0x32b215f4 -[UIWindow _sendTouchesForEvent:] + 520 
17 UIKit       0x32b0e804 -[UIApplication sendEvent:] + 376 
18 UIKit       0x32b0e11e _UIApplicationHandleEvent + 6150 
19 GraphicsServices    0x3085459e _PurpleEventCallback + 586 
20 GraphicsServices    0x308541ce PurpleEventCallback + 30 
21 CoreFoundation     0x3162e16e __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 30 
22 CoreFoundation     0x3162e112 __CFRunLoopDoSource1 + 134 
23 CoreFoundation     0x3162cf94 __CFRunLoopRun + 1380 
24 CoreFoundation     0x3159feb8 CFRunLoopRunSpecific + 352 
25 CoreFoundation     0x3159fd44 CFRunLoopRunInMode + 100 
26 GraphicsServices    0x308532e6 GSEventRunModal + 70 
27 UIKit       0x32b622fc UIApplicationMain + 1116 
28 CoachMe1      0x0000257e main (main.m:14) 
29 CoachMe1      0x00002538 0x1000 + 5432 


Thread 0 name: Dispatch queue: com.apple.main-thread 
Thread 0 Crashed: 
0 libsystem_kernel.dylib   0x3934f350 __pthread_kill + 8 
1 libsystem_c.dylib    0x33cb111e pthread_kill + 54 
2 libsystem_c.dylib    0x33ced96e abort + 90 
3 libc++abi.dylib     0x30803d4a abort_message + 70 
4 libc++abi.dylib     0x30800ff4 _ZL17default_terminatev + 20 
5 libobjc.A.dylib     0x355afa74 _ZL15_objc_terminatev + 144 
6 libc++abi.dylib     0x30801078 _ZL19safe_handler_callerPFvvE + 76 
7 libc++abi.dylib     0x30801110 std::terminate() + 16 
8 libc++abi.dylib     0x30802594 __cxa_rethrow + 84 
9 libobjc.A.dylib     0x355af9cc objc_exception_rethrow + 8 
10 CoreFoundation     0x3159ff1c CFRunLoopRunSpecific + 452 
11 CoreFoundation     0x3159fd44 CFRunLoopRunInMode + 100 
12 GraphicsServices    0x308532e6 GSEventRunModal + 70 
13 UIKit       0x32b622fc UIApplicationMain + 1116 
14 CoachMe1      0x0000257e main (main.m:14) 
15 CoachMe1      0x00002538 0x1000 + 5432 

回答

0

您的應用在loadGameDashboard功能轟然FrontPageViewController.m班線38

請檢查與一個破發點這個功能。你看到你的應用崩潰的地方....

+0

是的,謝謝,我發現。我猜最後一行,第29行比我想象的要重要。仍然不清楚爲什麼該行不是象徵性的。這是正常的嗎?謝謝 – JMH