How to identify the cause of an app crash (Apple) - ios

I am currently testing my app via TestFlight and have had a report of a crash. I've been looking at the code and trying to determine where the crash occurred and what the cause is but I'm stuck.
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Triggered by Thread: 0
Last Exception Backtrace:
0 CoreFoundation 0x180973d0c __exceptionPreprocess + 216 (NSException.m:200)
1 libobjc.A.dylib 0x198164ee4 objc_exception_throw + 56 (objc-exception.mm:565)
2 CoreFoundation 0x180a44750 -[NSObject(NSObject) doesNotRecognizeSelector:] + 140 (NSObject.m:147)
3 UIKitCore 0x183ac7f34 -[UIResponder doesNotRecognizeSelector:] + 268 (UIResponder.m:685)
4 CoreFoundation 0x18090d60c ___forwarding___ + 1472 (NSForwarding.m:3577)
5 CoreFoundation 0x18090c81c _CF_forwarding_prep_0 + 92
6 UIKitCore 0x1830b20b4 -[UIApplication sendAction:to:from:forEvent:] + 96 (UIApplication.m:5378)
7 UIKitCore 0x1831d120c -[UIControl sendAction:to:forEvent:] + 124 (UIControl.m:871)
8 UIKitCore 0x182f6743c -[UIControl _sendActionsForEvents:withEvent:] + 352 (UIControl.m:942)
9 UIKitCore 0x182cafd20 -[UIControl touchesBegan:withEvent:] + 408 (UIControl.m:543)
10 UIKitCore 0x182d6ded8 _UIGestureEnvironmentUpdate + 6708 (UIGestureEnvironment.m:0)
11 UIKitCore 0x182d9ee74 -[UIGestureEnvironment _updateForEvent:window:] + 736 (UIGestureEnvironment.m:1332)
12 UIKitCore 0x182dab978 -[UIWindow sendEvent:] + 4344 (UIWindow.m:3272)
13 UIKitCore 0x182f4c504 -[UIApplication sendEvent:] + 892 (UIApplication.m:11975)
14 UIKitCore 0x182d80974 __dispatchPreprocessedEventFromEventQueue + 8148 (UIEventDispatcher.m:2294)
15 UIKitCore 0x182d75838 __processEventQueue + 6544 (UIEventDispatcher.m:2600)
16 UIKitCore 0x182d7ac54 __eventFetcherSourceCallback + 168 (UIEventDispatcher.m:2672)
17 CoreFoundation 0x1809944ec __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24 (CFRunLoop.c:1972)
18 CoreFoundation 0x1809a461c __CFRunLoopDoSource0 + 204 (CFRunLoop.c:2016)
19 CoreFoundation 0x1808e6824 __CFRunLoopDoSources0 + 256 (CFRunLoop.c:2053)
20 CoreFoundation 0x1808ebef8 __CFRunLoopRun + 768 (CFRunLoop.c:2951)
21 CoreFoundation 0x1808ff240 CFRunLoopRunSpecific + 572 (CFRunLoop.c:3268)
22 GraphicsServices 0x1a13cf988 GSEventRunModal + 160 (GSEvent.c:2200)
23 UIKitCore 0x1830ff41c -[UIApplication _run] + 1080 (UIApplication.m:3511)
24 UIKitCore 0x182e98b88 UIApplicationMain + 336 (UIApplication.m:5064)
25 Here 0x100d88afc main + 68 (SelectionViewController.swift:14)
26 dyld 0x100fac3d0 start + 444 (dyldMain.cpp:879)
I have looked at various resources but I'm still stuck:
I've looked into the execution type (https://developer.apple.com/documentation/xcode/addressing-language-exception-crashes)
I have looked into Zombies but nothing is showing (https://help.apple.com/instruments/mac/current/#/dev612e6956)
Any advice or help would be greatly appreciated - thank you.

Related

iOS App Crash On PushViewController, but only in TestFlight

In my app, I have a TestFlight beta. It loads fine, and all the buttons and actions work, except for clicking on one section of the TableView, when I click that, it crashes every time. But, only in TestFlight beta installs. On Xcode Simulator it runs fine, if debugging on my phone by plugging into computer and running, it works fine. When I open the crash log in Xcode, I get the image below, but it doesn't really tell me anything. Here is the crash log:
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Triggered by Thread: 0
Last Exception Backtrace:
0 CoreFoundation 0x195260164 __exceptionPreprocess + 228 (NSException.m:199)
1 libobjc.A.dylib 0x194f74c1c objc_exception_throw + 60 (objc-exception.mm:565)
2 CoreFoundation 0x19514fbb8 +[NSException raise:format:] + 112 (NSException.m:155)
3 UIKitCore 0x198cf0d14 -[UISearchDisplayController initWithCoder:] + 88 (UISearchDisplayController.m:350)
4 UIFoundation 0x1988c793c UINibDecoderDecodeObjectForValue + 728 (UINibDecoder.m:717)
5 UIFoundation 0x198862d50 -[UINibDecoder decodeObjectForKey:] + 312 (UINibDecoder.m:811)
6 UIKitCore 0x199029668 -[UIRuntimeConnection initWithCoder:] + 132 (UIRuntimeConnection.m:22)
7 UIFoundation 0x1988c793c UINibDecoderDecodeObjectForValue + 728 (UINibDecoder.m:717)
8 UIFoundation 0x1988c7b5c UINibDecoderDecodeObjectForValue + 1272 (UINibDecoder.m:611)
9 UIFoundation 0x198862d50 -[UINibDecoder decodeObjectForKey:] + 312 (UINibDecoder.m:811)
10 UIKitCore 0x199024638 -[NSCoder(UIIBDependencyInjectionInternal) _decodeObjectsWithSourceSegueTemplate:creator:sender:f... + 492 (UIClassSwapper.m:57)
11 UIKitCore 0x199027200 -[UINib instantiateWithOwner:options:] + 1068 (UINib.m:347)
12 UIKitCore 0x198d3dea4 -[UIViewController _loadViewFromNibNamed:bundle:] + 368 (UIViewController.m:3105)
13 UIKitCore 0x198d3e954 -[UIViewController loadView] + 180 (UIViewController.m:3247)
14 UIKitCore 0x198d3ec24 -[UIViewController loadViewIfRequired] + 188 (UIViewController.m:3346)
15 UIKitCore 0x198d3f30c -[UIViewController view] + 32 (UIViewController.m:3404)
16 UIKitCore 0x198c9afa4 -[UINavigationController _startCustomTransition:] + 1148 (UINavigationController.m:1893)
17 UIKitCore 0x198caf478 -[UINavigationController _startDeferredTransitionIfNeeded:] + 692 (UINavigationController.m:6719)
18 UIKitCore 0x198cb0818 -[UINavigationController __viewWillLayoutSubviews] + 176 (UINavigationController.m:6988)
19 UIKitCore 0x198c934fc -[UILayoutContainerView layoutSubviews] + 228 (UILayoutContainerView.m:86)
20 UIKitCore 0x1998766a0 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 2168 (UIView.m:17176)
21 QuartzCore 0x19bec94a0 -[CALayer layoutSublayers] + 292 (CALayer.mm:9644)
22 QuartzCore 0x19bec98e0 CA::Layer::layout_if_needed(CA::Transaction*) + 472 (CALayer.mm:9518)
23 QuartzCore 0x19bedbdc4 CA::Layer::layout_and_display_if_needed(CA::Transaction*) + 144 (CALayer.mm:2468)
24 QuartzCore 0x19be20884 CA::Context::commit_transaction(CA::Transaction*, double) + 304 (CAContextInternal.mm:1992)
25 QuartzCore 0x19be4b3d0 CA::Transaction::commit() + 656 (CATransactionInternal.mm:438)
26 UIKitCore 0x1993d48cc _afterCACommitHandler + 144 (UIApplication.m:3120)
27 CoreFoundation 0x1951dac54 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 36 (CFRunLoop.c:1758)
28 CoreFoundation 0x1951d58e4 __CFRunLoopDoObservers + 420 (CFRunLoop.c:1868)
29 CoreFoundation 0x1951d5d84 __CFRunLoopRun + 1020 (CFRunLoop.c:2910)
30 CoreFoundation 0x1951d5660 CFRunLoopRunSpecific + 480 (CFRunLoop.c:3192)
31 GraphicsServices 0x19f5e6604 GSEventRunModal + 164 (GSEvent.c:2246)
32 UIKitCore 0x1993aa15c UIApplicationMain + 1944 (UIApplication.m:4820)
33 Ministry League 0x104093b48 main + 76 (main.m:16)
34 libdyld.dylib 0x1950511ec start + 4
Thread 0 name:
Thread 0 Crashed:
0 libsystem_kernel.dylib 0x0000000195046df0 __pthread_kill + 8
1 libsystem_pthread.dylib 0x0000000194f66930 pthread_kill + 228 (pthread.c:1458)
2 libsystem_c.dylib 0x0000000194ef48b4 abort + 104 (abort.c:110)
3 libc++abi.dylib 0x0000000195019f40 abort_message + 132 (abort_message.cpp:76)
4 libc++abi.dylib 0x000000019500b8c8 demangling_terminate_handler() + 308 (cxa_default_handlers.cpp:65)
5 libobjc.A.dylib 0x0000000194f74f0c _objc_terminate() + 132 (objc-exception.mm:701)
6 libc++abi.dylib 0x00000001950193cc std::__terminate(void (*)()) + 20 (cxa_handlers.cpp:59)
7 libc++abi.dylib 0x000000019501c154 __cxa_rethrow + 148 (cxa_exception.cpp:617)
8 libobjc.A.dylib 0x0000000194f74de8 objc_exception_rethrow + 44 (objc-exception.mm:604)
9 CoreFoundation 0x00000001951d56d0 CFRunLoopRunSpecific + 592 (CFRunLoop.c:3206)
10 GraphicsServices 0x000000019f5e6604 GSEventRunModal + 164 (GSEvent.c:2246)
11 UIKitCore 0x00000001993aa15c UIApplicationMain + 1944 (UIApplication.m:4820)
12 Ministry League 0x0000000104093b48 main + 76 (main.m:16)
13 libdyld.dylib 0x00000001950511ec start + 4
What this crash log tells me is that the app is loading a NIB that includes a UISearchDisplayController when it throws an exception. UISearchDisplayController is deprecated, and should be replaced with a UISearchController. The first thing I'd try is making that replacement.

Production crash swift

This is the stack trace we got from Apple.
I tried to debug but I'm unable to reproduce the crash.
What might be the reason?
Exception Type: EXC_CRASH (SIGABRT) Exception Codes:
0x0000000000000000, 0x0000000000000000 Exception Note:
EXC_CORPSE_NOTIFY Triggered by Thread: 0
Last Exception Backtrace: 0 CoreFoundation
0x184233164 exceptionPreprocess + 124 (NSException.m:166) 1
libobjc.A.dylib 0x18347c528 objc_exception_throw + 56
(objc-exception.mm:521) 2 CoreFoundation 0x184240628
-[NSObject(NSObject) doesNotRecognizeSelector:] + 140 (NSObject.m:322) 3 CoreFoundation 0x184238b10 ___forwarding_ + 1380
(NSForwarding.m:3220) 4 CoreFoundation 0x18411dccc
_CF_forwarding_prep_0 + 92 5 UIKit 0x18d9f3200 -[UIWebDocumentView setSelectedTextRange:] + 144
(UIWebDocumentView.m:5157) 6 UIKit
0x18d97fda0 -[UITextSelection commit] + 308 (UITextSelection.m:91) 7
UIKit 0x18de7334c
-[UITextGestureClusterUneditable oneFingerTapInUneditable:] + 1144 (UITextGestureCluster.m:1465) 8 UIKit
0x18de8aca4 -[UIGestureRecognizerTarget
_sendActionWithGestureRecognizer:] + 64 (UIGestureRecognizer.m:105) 9 UIKit 0x18de8f298
_UIGestureRecognizerSendTargetActions + 124 (UIGestureRecognizer.m:1129) 10 UIKit
0x18d967a14 _UIGestureRecognizerSendActions + 320
(UIGestureRecognizer.m:1168) 11 UIKit
0x18d81eb50 -[UIGestureRecognizer
_updateGestureWithEvent:buttonEvent:] + 732 (UIGestureRecognizer.m:0) 12 UIKit 0x18de78b08
_UIGestureEnvironmentUpdate + 1084 (UIGestureEnvironment.m:159) 13 UIKit 0x18de78678 -[UIGestureEnvironment
_deliverEvent:toGestureRecognizers:usingBlock:] + 404 (UIGestureEnvironment.m:1213) 14 UIKit
0x18de777d4 -[UIGestureEnvironment _updateGesturesForEvent:window:] +
276 (UIGestureEnvironment.m:1108) 15 UIKit
0x18d81ce5c -[UIWindow sendEvent:] + 3180 (UIWindow.m:2262) 16 UIKit
0x18d7ede7c -[UIApplication sendEvent:] + 340 (UIApplication.m:10211)
17 UIKit 0x18e14330c
dispatchPreprocessedEventFromEventQueue + 2364 (UIEventDispatcher.m:1445) 18 UIKit
0x18e145898 __handleEventQueueInternal + 4760
(UIEventDispatcher.m:1691) 19 UIKit
0x18e145c00 __handleEventQueueInternal + 5632
(UIEventDispatcher.m:1730) 20 UIKit
0x18e13e7b0 __handleHIDEventFetcherDrain + 152
(UIEventDispatcher.m:1659) 21 CoreFoundation
0x1841db77c
__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION + 24 (CFRunLoop.c:1982) 22 CoreFoundation 0x1841db6fc
__CFRunLoopDoSource0 + 88 (CFRunLoop.c:2017) 23 CoreFoundation 0x1841daf84 __CFRunLoopDoSources0 + 204 (CFRunLoop.c:2053) 24
CoreFoundation 0x1841d8b5c __CFRunLoopRun + 1048
(CFRunLoop.c:2920) 25 CoreFoundation 0x1840f8c58
CFRunLoopRunSpecific + 436 (CFRunLoop.c:3245) 26 GraphicsServices
0x185fa4f84 GSEventRunModal + 100 (GSEvent.c:2245) 27 UIKit
0x18d8515c4 UIApplicationMain + 236 (UIApplication.m:3956) 28
APPNAME_PROD 0x1009129e4 main + 56
(AppDelegate.swift:9) 29 libdyld.dylib 0x183c1856c
start + 4

SIGSEGV when convertPoint:fromLayer: is called

My app relatively often crashes with SIGSEGV. Unfortunately, I can not reproduce the crash and only see crash reports in Hockeyapp. I tried turning zombies on, too.
Looking at the crash report it seems that app crashes when processing touches (when user scrolling or something like this). No my app code mentioned in the stack trace.
The question is: how is it possible to have memory issue in this scenario? What would you recommend to reproduce and fix the issue?
Exception Type: SIGSEGV
Exception Codes: SEGV_ACCERR at 0x71a86113
Crashed Thread: 0
Application Specific Information:
objc_msgSend() selector name: convertPoint:fromLayer:
Thread 0 Crashed:
0 libobjc.A.dylib 0x2106fae6 objc_msgSend_stret + 6
1 UIKit 0x25e7a349 -[UIView(Geometry) convertPoint:fromView:] + 98
2 UIKit 0x25e7e987 __38-[UIView(Geometry) hitTest:withEvent:]_block_invoke + 104
3 CoreFoundation 0x217e8279 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 86
4 CoreFoundation 0x217e81a7 -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 248
5 UIKit 0x25e7e447 -[UIView(Geometry) hitTest:withEvent:] + 492
6 UIKit 0x26146f0d -[UIView(Geometry) _hitTest:withEvent:windowServerHitTestWindow:] + 62
7 UIKit 0x25e7e9bd __38-[UIView(Geometry) hitTest:withEvent:]_block_invoke + 158
8 CoreFoundation 0x217e8279 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 86
9 CoreFoundation 0x217e81a7 -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 248
10 UIKit 0x25e7e447 -[UIView(Geometry) hitTest:withEvent:] + 492
11 UIKit 0x26146f0d -[UIView(Geometry) _hitTest:withEvent:windowServerHitTestWindow:] + 62
12 UIKit 0x26136491 __70+[UIWindow _hitTestToPoint:forEvent:windowServerHitTestWindow:screen:]_block_invoke + 186
13 UIKit 0x25e4783f +[UIWindow _topVisibleWindowPassingTest:] + 156
14 UIKit 0x26136399 +[UIWindow _hitTestToPoint:forEvent:windowServerHitTestWindow:screen:] + 142
15 UIKit 0x26136629 -[UIWindow _targetWindowForPathIndex:atPoint:forEvent:windowServerHitTestWindow:onScreen:] + 158
16 UIKit 0x260ffb61 _UIApplicationHandleDigitizerEvent + 10982
17 UIKit 0x25e4123f _UIApplicationHandleEventQueue + 3836
18 CoreFoundation 0x21889dff __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 12
19 CoreFoundation 0x218899ed __CFRunLoopDoSources0 + 450
20 CoreFoundation 0x21887d5b __CFRunLoopRun + 792
21 CoreFoundation 0x217d7229 CFRunLoopRunSpecific + 518
22 CoreFoundation 0x217d7015 CFRunLoopRunInMode + 106
23 GraphicsServices 0x22dc7ac9 GSEventRunModal + 158
24 UIKit 0x25eab189 UIApplicationMain + 142
25 My App. 0x0005376b main (main.m:14)
26 ??? 0x2147f873 0x0 + 0

Cannot understand iOS crash log

Could someone please help me understand this crash report. I can't make head or tail of it.
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Triggered by Thread: 0
Filtered syslog:
None found
Last Exception Backtrace:
0 CoreFoundation 0x181a7edb0 __exceptionPreprocess + 124
1 libobjc.A.dylib 0x1810e3f80 objc_exception_throw + 56
2 CoreFoundation 0x181a7ec80 +[NSException raise:format:arguments:] + 108
3 Foundation 0x182404154 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 112
4 UIKit 0x1871779f4 +[UIAlertAction _actionWithTitle:descriptiveText:image:style:handler:shouldDismissHandler:] + 512
5 UIKit 0x187177bd4 +[UIAlertAction _actionWithTitle:image:style:handler:shouldDismissHandler:] + 148
6 UIKit 0x187177d98 +[UIAlertAction actionWithTitle:style:handler:] + 108
7 carerecord 0x1000d1ce0 -[CRUserList03ViewController btnUserTap:event:] (CRUserList03ViewController.m:1227)
8 UIKit 0x186c0cbe8 -[UIApplication sendAction:to:from:forEvent:] + 100
9 UIKit 0x186c0cb64 -[UIControl sendAction:to:forEvent:] + 80
10 UIKit 0x186bf4870 -[UIControl _sendActionsForEvents:withEvent:] + 436
11 UIKit 0x186c0c454 -[UIControl touchesEnded:withEvent:] + 572
12 UIKit 0x186c0c084 -[UIWindow _sendTouchesForEvent:] + 804
13 UIKit 0x186c04c20 -[UIWindow sendEvent:] + 784
14 carerecord 0x100235a08 -[CRWindow sendEvent:] (CRWindow.m:23)
15 UIKit 0x186bd504c -[UIApplication sendEvent:] + 248
16 UIKit 0x186bd3628 _UIApplicationHandleEventQueue + 6568
17 CoreFoundation 0x181a3509c CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION + 24
18 CoreFoundation 0x181a34b30 __CFRunLoopDoSources0 + 540
19 CoreFoundation 0x181a32830 __CFRunLoopRun + 724
20 CoreFoundation 0x18195cc50 CFRunLoopRunSpecific + 384
21 GraphicsServices 0x183244088 GSEventRunModal + 180
22 UIKit 0x186c3e088 UIApplicationMain + 204
23 carerecord 0x1002a1f3c main (main.m:14)
24 libdyld.dylib 0x1814fa8b8 start + 4

Crash log is not completely symbolicated

I am able to symbolicate my crash logs in xcode 4.5 EXCEPT for the last line. Specifically line 29 of the 'Last Exception Backtrace' and line 15 in the 'Thread 0' area in the crash log doesn't show the object or method call when all the other lines do. My code is CoachMe1.
Any ideas as to why this would be ?
Here is the Symbolicated code:
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
Your app is crashing in loadGameDashboard function in FrontPageViewController.m class line 38.
Please check this function with a break point . you see where your app is crashing....

Resources