viewController custom init method with storyboard

前端 未结 2 444
-上瘾入骨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:03

    As another "workaround" for this problem, you could use delegation. Create a protocol that would act as data source for your UIViewController subclass from storyboard. Conform to this data source protocol, implement it and use it right after loading your UIViewController subclass:

    required init?(coder aDecoder: NSCoder)
        {
            super.init(coder: aDecoder)
    
            //invoke your data source here
        }
    

    I know... I also don't like this but... ;)

提交回复
热议问题