The presence of the Last Exception Backtrace section indicates that your app crashed due to an unhandled language exception. Consider its backtrace:
Last Exception Backtrace:
0 CoreFoundation … __exceptionPreprocess + 164
1 libobjc.A.dylib … objc_exception_throw + 60
2 CoreFoundation … -[NSException init] + 0
3 Foundation … -[NSObject(NSKeyValueCoding) setValue:forKey:] + 284
4 UIKitCore … -[UIViewController setValue:forKey:] + 80
5 UIKitCore … -[UIRuntimeOutletConnection connect] + 84
6 CoreFoundation … -[NSArray makeObjectsPerformSelector:] + 208
7 UIKitCore … -[UINib instantiateWithOwner:options:] + 1424
8 UIKitCore … -[UIViewController loadView] + 396
9 UIKitCore … -[UIViewController loadViewIfRequired] + 156
10 UIKitCore … -[UIViewController view] + 24
11 UIKitCore … -[UIWindow addRootViewControllerViewIfPossible] + 136
12 UIKitCore … -[UIWindow _updateLayerOrderingAndSetLayerHidden:actionBlock:] + 216
13 UIKitCore … -[UIWindow _setHidden:forced:] + 256
14 UIKitCore … -[UIWindow _mainQueue_makeKeyAndVisible] + 40
15 UIKitCore … -[UIWindowScene _performDeferredInitialWindowUpdateForConnection] + 208
16 UIKitCore … +[UIScene _sceneForFBSScene:create:withSession:connectionOptions:] + 1232
17 UIKitCore … -[UIApplication _connectUISceneFromFBSScene:transitionContext:] + 808
18 UIKitCore … -[UIApplication workspace:didCreateScene:withTransitionContext:completion:] + 360
19 UIKitCore … -[UIApplicationSceneClientAgent scene:didInitializeWithEvent:completion:] + 288
20 FrontBoardServices … -[FBSScene _callOutQueue_didCreateWithTransitionContext:completion:] + 324
21 FrontBoardServices … __92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:com…
22 FrontBoardServices … -[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:] + 168
23 FrontBoardServices … __92-[FBSWorkspaceScenesClient createSceneWithIdentity:parameters:transitionContext:com…
24 libdispatch.dylib … _dispatch_client_callout + 20
25 libdispatch.dylib … _dispatch_block_invoke_direct + 284
26 FrontBoardServices … __FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ + 52
27 FrontBoardServices … -[FBSMainRunLoopSerialQueue _targetQueue_performNextIfPossible] + 240
28 FrontBoardServices … -[FBSMainRunLoopSerialQueue _performNextFromRunLoopSource] + 28
29 CoreFoundation … __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 28
30 CoreFoundation … __CFRunLoopDoSource0 + 176
31 CoreFoundation … __CFRunLoopDoSources0 + 340
32 CoreFoundation … __CFRunLoopRun + 828
33 CoreFoundation … CFRunLoopRunSpecific + 608
34 GraphicsServices … GSEventRunModal + 164
35 UIKitCore … -[UIApplication _run] + 888
36 UIKitCore … UIApplicationMain + 340
37 iDentify … main + 64
38 dyld … start + 2240
Frames 3 through 0 are what you see when you try to set a property on an object that doesn’t support that property. Frame 5 suggests that this is UIKit trying to ‘wire up’ an IBOutlet. It’s hard to say much beyond that.
If you can get this to crash when the debugging is attached, Xcode should show the actual exception message. That’ll tell you which outlet was involved.
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"