admin管理员组

文章数量:1636810

本文摘录于:https://www.jianshu/p/465701601818只是做学习备份之用,绝无抄袭之意,有疑惑请联系本人!
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;

本文标签: 报错appiosdelegateProperty