方法一
1.刪除掉info.plist中Application Scene Manifest選項杂曲,2.刪除項目中的Scenedelegate.h和Scenedelegate.m3.刪除掉APPdelegate.m中的#pragma mark - UISceneSession lifecycle代碼4.在APPdelegate.h中添加@property(strong,nonatomic)UIWindow * window;屬性
方法二
appdelegate判斷啟動問題
if (@available(iOS 13.0, *))
{
// 在SceneDelegate里創(chuàng)建UIWindow
}
else
{}
UIKIT_EXTERN API_AVAILABLE(ios(13.0)) 加入文件編譯判斷
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_13_0
//新特性的方法
#endif