viewController custom init method with storyboard

前端 未结 2 445
-上瘾入骨i
-上瘾入骨i 2021-01-30 08:28

im having trouble overriding the initialization method for my CustomViewController thats designed in my Storyboard.

now im doing (in my mainViewController):



        
2条回答
  •  迷失自我
    2021-01-30 09:15

    The designated initializer for view controllers in storyboards is -initWithCoder:. Since most view controllers from a storyboard are created via segues, you usually see state set during -prepareForSegue:sender:.

    If you're instantiating a view controller directly from the storyboard like in the example you provided, then the pattern you've selected is appropriate.

提交回复
热议问题