简体   繁体   English

为什么 Main.storyboard 不显示?

[英]Why Main.storyboard doesn't show?

I'm new to ios develop,I learned about storyboard recently and I'm trying to use it.But at last the storyboard file looks doesn't be loaded.我是 ios 开发的新手,我最近了解了故事板,我正在尝试使用它。但最后故事板文件看起来没有加载。

What I have done is:我所做的是:

1.add some ui elements like Button to initial xib file of storyboard 1.在storyboard的初始xib文件中添加一些像Button这样的ui元素

2.modify Main Interface in project - General page to Main .(my storyboard file name is Main.storyboard) 2.修改项目中的主界面- 常规页面到.(我的故事板文件名是Main.storyboard)

When I start the app,the screen is all white with nothing.Anyone can tell me why this happened and how can I solve this bug.Thanks!当我启动应用程序时,屏幕全白,没有任何东西。任何人都可以告诉我为什么会发生这种情况以及如何解决这个错误。谢谢!

Update1:As this image shows,I have set initial xib for storyboard.更新 1:如图所示,我已经为情节提要设置了初始 xib。

  1. Since you said you didn't created the project with a storyboard template, look for this line in your info.plist 由于您说过没有使用情节提要模板创建项目,因此请在info.plist中查找此行 info.plist中

  2. This could happen because the subview frames are being created outside the view frame. 这可能是因为子视图框架是在视图框架外部创建的。 Try setting some alignment constraints in your subviews. 尝试在子视图中设置一些对齐约束。 在此处输入图片说明

You have to set your controller as initial view controller. 您必须将控制器设置为初始视图控制器。 You can find it in your Main.Storyboard on the right site, if you select your first controller. 如果选择第一个控制器,则可以在正确站点的Main.Storyboard中找到它。

在此处输入图片说明

Here in 2021, a default Xcode project uses scenes, but that requires iOS 13 and I wanted to support iOS 12. I deleted the SceneDelegate file from my project and the scene delegate functions from the AppDelegate file, but then my storyboard wasn't loading either.在 2021 年,默认的 Xcode 项目使用场景,但这需要 iOS 13,我想支持 iOS 12。我从我的项目中删除了 SceneDelegate 文件并从 AppDelegate 文件中删除了场景委托函数,但是我的故事板没有加载任何一个。 The problem is that I also needed to remove the Application Scene Manifest section from info.plist.问题是我还需要从 info.plist 中删除 Application Scene Manifest 部分。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM