Xcode 7无法找到名为的故事板

dev*_*laz 9 iphone objective-c storyboard ios xcode7

将Xcode更新为7版后,无法构建我的应用程序.每次我在模拟器的其他版本和设备中构建时,都会出现此错误.清理项目后,我可以在设备上运行,但如果我想再次运行,错误就会恢复.

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Could not find a storyboard named 'Main' in bundle NSBundle </private/var/mobile/Containers/Bundle/Application/43A262C3-81D4-4CF3-B727-AE670906234E/someexample.app> (loaded)'
    *** First throw call stack:
    (0x1852b422c 0x196f280e4 0x18a2f26b0 0x189fbdd48 0x189fbcee0 0x189fbb578 0x18daf53c8 0x18526bfc8 0x18526b0d0 0x1852696f4 0x185194f74 0x189d9c224 0x189d96d94 0x10016854c 0x1975d2a08)
    libc++abi.dylib: terminating with uncaught exception of type NSException
Run Code Online (Sandbox Code Playgroud)

我尝试从目标"主界面"中删除并在AppDelegate中像这样硬编码

UIStoryboard *mainStoryboard = [UIStoryboard storyboardWithName:@"Main" bundle: nil];
ViewController *yourController = (ViewController *)[mainStoryboard instantiateViewControllerWithIdentifier:@"StartVC"];
self.window.rootViewController = yourController;
Run Code Online (Sandbox Code Playgroud)

我有另一个错误,如找不到故事板ID StartVC

你也有这个问题吗?

UPD:

尝试创建新的故事板并放入主界面并获得相同的错误

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Could not find a storyboard named 'Storyboard' in bundle NSBundle
Run Code Online (Sandbox Code Playgroud)

UPD 2

*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle: 'NSBundle </Users/devBot/Library/Developer/CoreSimulator/Devices/5018D9C0-9609-4368-A72C-488C67EBEFB5/data/Containers/Bundle/Application/9E485D40-7ED4-4996-942B-81A7C9E4DCA9/someapp.app> (loaded)' with name 'StartVC' and directory 'Main.storyboardc''
Run Code Online (Sandbox Code Playgroud)

UPD 3

在Xcode 6.4中一切正常!我认为这是Xcode 7中的错误

hef*_*fgi 11

使用故事板引用在Xcode 7中遇到此问题.可能是一个解决方案:

  • 修复文件检查器中每个故事板的本地化相同(基础,英语...).这可能是捆绑的一个问题.


Tej*_*uri 10

有时会发生这种情况,因为未选中故事板中文件检查器中的目标成员身份.确保已检查该值.