The * .storyboardc file was not found.

I am trying to submit an iOS app with an extension, but I get a strange error on validation: enter image description here

My storyboard is a widget named Main.storyboard. The property file looks like this:

enter image description here

+3


source to share


4 answers


I think this is a mistake. I solved this problem when I moved Main.storyboard (NSExtensionMainStoryboard defined in info.plist) into a subdirectory of the extension target. This means that you cannot localize main.storyboard because it will be moved to the base directory or a specific language directory.



+2


source


For me, abandoning Xcode (version 7.1.1) and trying again did the trick.



+1


source


I ran into this problem and found the following to work without sacrificing localization.

1) Copy your Main.storyboard from en.lproj to the root of your extension

2) Drag the copied file into Xcode among the extension files and make sure you don't need to "Copy items as needed"

3) Archive and check

This means that it passed the validator check. I have a developer support ticket at Apple and they are aware of the problem.

UPDATE 10/15/2014: Apple has resolved this issue. No workaround required anymore

0


source


I had this problem caused by using "/" in storyboard ID.

Removing that resolved it.

0


source







All Articles