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

发布时间:2023年12月19日

在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; 这句代码即可。

文章来源:https://blog.csdn.net/youmangu/article/details/135030755
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。