Xcode11 创建的工程自带了SceneDelegate

image.png
第一步:删除SceneDelegate.h和.m文件
第二步:删除AppDelegate.m中的UISceneSession lifecycle协议方法实现(可以不做)

image.png
第三步:给AppDelegate.h添加window属性,否则会log打印信息,无法加载storyboard,黑屏
[Application] The app delegate must implement the window property if it wants to use a main storyboard file.

image.png