UIViewController初始化沒有 init 導(dǎo)致的 Bug

今天的這個(gè)bug,真的出現(xiàn)在我的項(xiàng)目里面了。。。知道原因時(shí)差點(diǎn)破腹自盡

我自閉了

事情是這樣的,原本有個(gè)控制器是用Nav push 來顯示的,現(xiàn)在需要改成用modal present 來顯示。。還有比這個(gè)更容易的需求嗎????

但是bug出現(xiàn)了。。。

寫個(gè)簡易代碼演示下:

// 控制器B的viewDidLoad()

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    UIView *view = [[UIView alloc] init];
    view.backgroundColor = [UIColor redColor];
    view.frame = CGRectMake(0, 0, 100, 100);
    view.center = self.view.center;
    [self.view addSubview:view];
}
這代碼夠簡單吧,加了全局?jǐn)帱c(diǎn),然后如下:

全局?jǐn)帱c(diǎn)

話說 *** Assertion failure in UITraitCollection * _Nonnull _UIGetCurrentFallbackTraitCollection(void)(), /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKitCore_Sim/UIKit-3899.13.13/_UIFallbackEnvironment.m:91
這個(gè)錯(cuò)誤我是左查右查都不知道為啥,為啥直接就停在這了。。。

好吧,我去掉斷點(diǎn)
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '<NewViewController: 0x7fa6d6f0ace0> returned nil from -traitCollection, which is not allowed.'
*** First throw call stack:
(
    0   CoreFoundation                      0x00007fff23b98bde __exceptionPreprocess + 350
    1   libobjc.A.dylib                     0x00007fff503b5b20 objc_exception_throw + 48
    2   CoreFoundation                      0x00007fff23b98958 +[NSException raise:format:arguments:] + 88
    3   Foundation                          0x00007fff255eb7be -[NSAssertionHandler handleFailureInFunction:file:lineNumber:description:] + 166
    4   UIKitCore                           0x00007fff46dd08bd _UIGetCurrentFallbackTraitCollection + 962
    5   UIKitCore                           0x00007fff476029fa UIViewCommonInitWithFrame + 617
    6   UIKitCore                           0x00007fff47602753 -[UIView initWithFrame:] + 98
    7   UIKitCore                           0x00007fff47601fa3 -[UIView init] + 44
    8   PresentDemo                         0x000000010ab18f05 -[NewViewController viewDidLoad] + 85
    9   UIKitCore                           0x00007fff46af87c2 -[UIViewController _sendViewDidLoadWithAppearanceProxyObjectTaggingEnabled] + 83
    10  UIKitCore                           0x00007fff46afd6d3 -[UIViewController loadViewIfRequired] + 1084
    11  UIKitCore                           0x00007fff46afdaf0 -[UIViewController view] + 27
    12  UIKitCore                           0x00007fff46a1776d -[_UIFullscreenPresentationController _setPresentedViewController:] + 84
    13  UIKitCore                           0x00007fff46a0b105 -[UIPresentationController initWithPresentedViewController:presentingViewController:] + 184
    14  UIKitCore                           0x00007fff46b0ec8e -[UIViewController _presentViewController:withAnimationController:completion:] + 3553
    15  UIKitCore                           0x00007fff46b1180b __63-[UIViewController _presentViewController:animated:completion:]_block_invoke + 98
    16  UIKitCore                           0x00007fff46b11d23 -[UIViewController _performCoordinatedPresentOrDismiss:animated:] + 511
    17  UIKitCore                           0x00007fff46b11769 -[UIViewController _presentViewController:animated:completion:] + 187
    18  UIKitCore                           0x00007fff46b119d0 -[UIViewController presentViewController:animated:completion:] + 150
    19  PresentDemo                         0x000000010ab18c82 -[ViewController viewDidAppear:] + 146
    20  UIKitCore                           0x00007fff46b036a2 -[UIViewController _setViewAppearState:isAnimating:] + 934
    21  UIKitCore                           0x00007fff46a57e2d -[UINavigationController viewDidAppear:] + 173
    22  UIKitCore                           0x00007fff46b036a2 -[UIViewController _setViewAppearState:isAnimating:] + 934
    23  UIKitCore                           0x00007fff46b040a6 -[UIViewController _endAppearanceTransition:] + 196
    24  UIKitCore                           0x00007fff46a0bf2b __48-[UIPresentationController transitionDidFinish:]_block_invoke + 138
    25  UIKitCore                           0x00007fff4716b85a _runAfterCACommitDeferredBlocks + 352
    26  UIKitCore                           0x00007fff4715c63c _cleanUpAfterCAFlushAndRunDeferredBlocks + 248
    27  UIKitCore                           0x00007fff4718bc6e _afterCACommitHandler + 85
    28  CoreFoundation                      0x00007fff23afaeb7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    29  CoreFoundation                      0x00007fff23af594e __CFRunLoopDoObservers + 430
    30  CoreFoundation                      0x00007fff23af5fca __CFRunLoopRun + 1514
    31  CoreFoundation                      0x00007fff23af56b6 CFRunLoopRunSpecific + 438
    32  GraphicsServices                    0x00007fff3815cbb0 GSEventRunModal + 65
    33  UIKitCore                           0x00007fff47162a67 UIApplicationMain + 1621
    34  PresentDemo                         0x000000010ab191a4 main + 116
    35  libdyld.dylib                       0x00007fff5123bcf5 start + 1
    36  ???                                 0x0000000000000001 0x0 + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
(lldb) 

*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '<NewViewController: 0x7fa6d6f0ace0> returned nil from -traitCollection, which is not allowed.'
然后自閉了。。。。

直接push代碼如下:
[self.navigationController pushViewController:[NewViewController alloc] animated:YES];

一點(diǎn)毛病沒有,啥都正常。。。
所以我改的modal代碼:

[self presentViewController:[NewViewController alloc] animated:YES completion:nil];

真的是瘋了,主要是注意力全在 NewViewController 中。。。最后才看到,沒有 init

 [self presentViewController:[[NewViewController alloc] init] animated:YES completion:nil];

。。。。。。。。。。
心中一千匹草泥馬奔過。。。。
所以大家要細(xì)心啊。。。

alloc只是開辟了內(nèi)存空間,但是沒有進(jìn)行初始化。為啥push可以。。。求大佬解釋
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容