Olá, bom dia.
Segue todas as instruções corretamente da aula 2.1, única coisa que fiz diferente foi a seguinte linha de código abaixo:
self.window.rootViewController = [ListaContatosViewController new];
Basicamente eu apontei direto para o set da variável window.
Entretanto, mesmo usando um ponteiro o seguinte erro é apresentado após carregamento da launchscreen:
2020-01-07 10:10:26.249768-0300 AgendaDeContatos[26006:6846944] -[AppDelegate window]: unrecognized selector sent to instance 0x6000001818e0
2020-01-07 10:10:26.253828-0300 AgendaDeContatos[26006:6846944] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[AppDelegate window]: unrecognized selector sent to instance 0x6000001818e0'
*** First throw call stack:
(
0 CoreFoundation 0x00007fff23c7127e __exceptionPreprocess + 350
1 libobjc.A.dylib 0x00007fff513fbb20 objc_exception_throw + 48
2 CoreFoundation 0x00007fff23c91fd4 -[NSObject(NSObject) doesNotRecognizeSelector:] + 132
3 UIKitCore 0x00007fff480c0f17 -[UIResponder doesNotRecognizeSelector:] + 302
4 CoreFoundation 0x00007fff23c759f6 ___forwarding___ + 838
5 CoreFoundation 0x00007fff23c77f78 _CF_forwarding_prep_0 + 120
6 AgendaDeContatos 0x000000010360a494 -[AppDelegate application:didFinishLaunchingWithOptions:] + 116
7 UIKitCore 0x00007fff48089ad8 -[UIApplication _handleDelegateCallbacksWithOptions:isSuspended:restoreState:] + 232
8 UIKitCore 0x00007fff4808b460 -[UIApplication _callInitializationDelegatesWithActions:forCanvas:payload:fromOriginatingProcess:] + 3980
9 UIKitCore 0x00007fff48090f05 -[UIApplication _runWithMainScene:transitionContext:completion:] + 1226
10 UIKitCore 0x00007fff477c57a6 -[_UISceneLifecycleMultiplexer completeApplicationLaunchWithFBSScene:transitionContext:] + 179
11 UIKitCore 0x00007fff4808d514 -[UIApplication _compellApplicationLaunchToCompleteUnconditionally] + 59
12 UIKitCore 0x00007fff4808d813 -[UIApplication _run] + 754
13 UIKitCore 0x00007fff48092d4d UIApplicationMain + 1621
14 AgendaDeContatos 0x0000000103609d84 main + 116
15 libdyld.dylib 0x00007fff5227ec25 start + 1
16 ??? 0x0000000000000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb)
Antes que alguém pergunte, sim já procurei no google e em um monte de fórum e fiz diversas tentativa de consertar, porém todas sem sucesso. :(