[Application] The app delegate must implement the window property if ..... 错误

在xcode中新建ios项目后再真机上运行,会发现手机上一篇漆黑,仔细观察控制台会发现这样的提示:

[Application] The app delegate must implement the window property if it wants to use a main storyboard.

大概意思是:

app delegate 必须实现 window属性。

这里有一篇博文详细解释了出现这种问题的原因及解决方式:https://blog.csdn.net/u011915116/article/details/105096194/

不想看原因的,直接按照下面的解决方式解决:

        要解决这一问题也很简单,既然是找不到window属性,那我们把这个属性加上就可以了。在AppDelegate.m文件的如下位置加上:@synthesize window = _window; 这句代码即可。

你可能感兴趣的:(IOS,常见问题与解决方法,ios)