2020-07-08

如何解决 Xcode11中 编译弹出 The app delegate must implement the window property if it wants to use a main storyboard file.

遇事不要慌......

使用Xcode11新建工程支持iOS版本13,则就会提示出该问题。当程序编译后屏幕出现一片黑。

好吧,直接看问题

只需要一步操作。在AppDelegate 直接引入一下代码就OK!

@synthesize window = _window

好了,搞定!

你可能感兴趣的:(2020-07-08)