iOS validation got Main_iPhone~iphone.storyboardc was not found

后端 未结 8 2476
遇见更好的自我
遇见更好的自我 2021-02-19 04:36

I am trying to distribute my iOS app, and I got the following error message during xCode validation. \"storyboard file \'Main_iPhone~iphone.storyboardc\' was not found please e

相关标签:
8条回答
  • 2021-02-19 05:36

    Editing the plist file solved it for me.

    • Go to Targets -> Info
    • To delete a field, hover over the up/down arrow icon next to the key you want to delete, and press the minus.
    • Or, if you need to add a field, hover over any up/down icon and press the plus.

    I had a bug where it was looking for an iPad storyboard, even though I was only targeting iPhones. I simply had to delete the corresponding key/value pair from here.

    0 讨论(0)
  • 2021-02-19 05:40

    Remove the storyboard from the plist file if you use iPad

    <key>UIMainStoryboardFile</key>
    <string>Main</string>
    

    or if you use iPhone

    <key>UIMainStoryboardFile~ipad</key>
    <string>Main</string>
    
    0 讨论(0)
提交回复
热议问题