Swift Storyboard错误:无法向后部署Main.storyboard

时间:2016-02-26 11:46:35

标签: ios storyboard

我们目前正在尝试构建一个Swift ios应用,遇到一个奇怪的错误。

  

/ com.apple.ibtool.warnings /:警告:无法验证Storyboard   Main1.storyboard的参考。 :警告:无法验证   Main1.storyboard的故事板参考。 / com.apple.ibtool.errors   /:错误:无法向后部署Storyboard引用   Main1.storyboard。

向后部署是什么意思?

2 个答案:

答案 0 :(得分:2)

1)首先尝试使用 Main.storyboard

更改故事板名称

如果失败那么,

2)右键单击 - >删除文件 - >点击删除参考。

enter image description here

enter image description here

然后再次添加,

enter image description here

enter image description here

//您的故事板名称将为 Main1.storyboard

最后,在这两个地方检查你的故事板名称,

enter image description here

enter image description here

enter image description here

答案 1 :(得分:0)

您可以创建故事板使用代码,它会显示警告。不要在乎它。

storyBoardName = @"MajorTest";
storyBoardName = @"SecondTest";
storyBoardName = @"UIDesign";


self.window = [[UIWindow alloc]initWithFrame:[[UIScreen mainScreen]bounds]];
self.window.backgroundColor = [UIColor whiteColor];

UIStoryboard* storyBoard = [UIStoryboard storyboardWithName:storyBoardName bundle:nil];
self.window.rootViewController = [storyBoard instantiateInitialViewController];
[self.window makeKeyAndVisible];