美文网首页iOS开发问题解决
iOS 运行报错The app delegate must im

iOS 运行报错The app delegate must im

作者: Sinda_Liu | 来源:发表于2020-12-28 15:20 被阅读0次

APP运行显示黑屏,console中报The app delegate must implement the window property if it wants to use a main storyboard file.

解决办法:

1、 在AppDelegate.h文件中添加代码:

@property (strong, nonatomic) UIWindow * window;
AppDelegate.h

2、在AppDelegate.m文件中添加代码:

@synthesize window = _window;
AppDelegate.m

相关文章

网友评论

    本文标题:iOS 运行报错The app delegate must im

    本文链接:https://www.haomeiwen.com/subject/dgxtoktx.html