2012-11-07 5 views
5

Wie bekomme ich alles symbolisieren? Hierxcode 4.5 crash log symbolicates mit Ausnahme von App-Zeilen

ist ein Beispiel so, was ich rede:

Thread 0 name: Dispatch queue: com.apple.main-thread 
Thread 0 Crashed: 
0 CoreFoundation     0x351642cc CFRelease + 32 
1 CoreFoundation     0x3518e130 CFArraySetValueAtIndex + 284 
2 AddressBook      0x32971aba ABCMultiValueReplaceLabel + 58 
3 AddressBook      0x3298c598 ABMultiValueReplaceLabelAtIndex + 140 
4 My App      0x00011206 0x00011206 
5 My App      0x00010e48 0x00010e48 
6 My App      0x00011ada 0x00011ada 
7 My App      0x0001027c 0x0001027c 
8 My App      0x0000ecf2 0x0000ecf2 
9 My App      0x00012f44 0x00012f44 
10 My App      0x00012e3e 0x00012e3e 
11 Foundation      0x32d0aef2 __65-[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:]_block_invoke_0 + 14 
12 Foundation      0x32c4a9ec -[NSURLConnectionInternal _withConnectionAndDelegate:onlyActive:] + 196 
13 Foundation      0x32c4a908 -[NSURLConnectionInternal _withActiveConnectionAndDelegate:] + 56 
14 CFNetwork      0x3111c5dc ___delegate_didFinishLoading_block_invoke_0 + 24 
15 CFNetwork      0x3111bcc8 ___withDelegateAsync_block_invoke_0 + 52 
16 CFNetwork      0x31144130 ___performAsync_block_invoke_068 + 16 
17 CoreFoundation     0x3516974a CFArrayApplyFunction + 174 
18 CFNetwork      0x3114458e RunloopBlockContext::perform() + 70 
19 CFNetwork      0x310a815a MultiplexerSource::perform() + 186 
20 CoreFoundation     0x351f8680 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 12 
21 CoreFoundation     0x351f7ee4 __CFRunLoopDoSources0 + 208 
22 CoreFoundation     0x351f6cb2 __CFRunLoopRun + 642 
23 CoreFoundation     0x35169eb8 CFRunLoopRunSpecific + 352 
24 CoreFoundation     0x35169d44 CFRunLoopRunInMode + 100 
25 GraphicsServices    0x356a62e6 GSEventRunModal + 70 
26 UIKit       0x365482fc UIApplicationMain + 1116 
27 My App      0x0000275a 0x0000275a 
28 My App      0x00002714 0x00002714 
+2

Konnten Sie das jemals lösen? – Carter

Antwort

5

Sie könnten diese Verbindungen nützlich finden, wie Crash-Protokolle symbolicate:
Symbolicating iPhone App Crash Reports
iOS Crash Logs

andere Art und Weise: in Xcode 4.5, setze dein Build-Ziel (über das Drop-down-Menü Schema neben der Schaltfläche Stopp) auf ein iOS-Gerät. Gehen Sie dann in der Menüleiste zum Menü Produkt und wählen Sie Archivieren.

Als nächstes öffnen Sie das Organizer-Fenster (Menü Fenster in der Menüleiste -> Organizer) und stellen Sie sicher, dass Ihre App in der Liste angezeigt wird, wenn Sie auf das Archiv-Symbol oben im Organizer-Fenster klicken.

Klicken Sie abschließend auf das Symbol Geräte oben im Organizer-Fenster, klicken Sie links unter Bibliothek auf Geräteprotokolle, und ziehen Sie das Crashprotokoll in den Bereich rechts. Es sollte vollständig automatisch für Sie symbolisiert werden.

Verwandte Themen