Xcode11: The app delegate must implement the window property if it wants to use a main storyboard...

当使用Xcode11创建新项目且支持iOS13以下版本的情况下, 控制台就会报这个错误, 屏幕也是漆黑一片.

原因: Xcode11 对APP的生命周期以及APP内UI的生命周期做了剥离.
可参考:Xcode11: 删除默认Main.storyBoard、自定义根控制器

解决办法:

  1. 在AppDelegate.m中添加 @synthesize window = _window;
  2. 在AppDelegate.h中添加@property (strong, nonatomic) UIWindow * window;

.end

你可能感兴趣的:(Xcode11: The app delegate must implement the window property if it wants to use a main storyboard...)