Could not find a storyboard named 'Main' in bundle NSBundle

后端 未结 4 1511
小蘑菇
小蘑菇 2021-02-05 09:22

during the progress of my app I decided to change from using a UIStoryboard to .xib file, and now I get the error:

Could not find a storyboard named \'Main\' in bun

相关标签:
4条回答
  • 2021-02-05 09:23

    if you are using SceneDelegate in iOS13, Try to remove this key.

    0 讨论(0)
  • 2021-02-05 09:26

    Add these line to your action method

    Where "Main" will be same as it as

    let storyboard = UIStoryboard.init(name: "Main", bundle: nil)

    let secondVc = storyboard.instantiateViewController(withIdentifier: "ControllerName") as! ControllerName

    present(secondVc, animated: true, completion: nil)

    0 讨论(0)
  • 2021-02-05 09:38

    Remove the "Main storyboard file base name" or "UIMainStoryboardFile" Key from your info.plist file.

    info.plist

    0 讨论(0)
  • 2021-02-05 09:47

    Click Your Story board

    then do step 2 and step 3

    0 讨论(0)
提交回复
热议问题