相关知识:
https://blog.csdn.net/BUG_delete/article/details/103699563
The correct code is
let appDelegate:AppDelegate = UIApplication.shared.delegate as! AppDelegate
add @UIApplicationMain this as well.
remove ().
It seems you might set the following
@available(iOS x.x, *)
@UIApplicationMain
In your AppDelegate
you can remove that or you can change the minimum deployment target with your supportive iOS
version
比如公司现在新开一个项目,使用此App的最低版本要求是iOS12。
(也就是说这个App上架后,只有iPhone的iOS版本是12以上的用户才能在App Store里面看到并下载)
这个时候如果我们使用的是最新版Xcode11并且只按默认配置开发的话,会出现以下错误:
'ConnectionOptions' is only available in iOS 13.0 or newer
'UIScene' is only available in iOS 13.0 or newer
'UISceneConfiguration' is only available in iOS 13.0 or newer
'UISceneSession' is only available in iOS 13.0 or newer
'UIWindowScene' is only available in iOS 13.0 or newer
...
Storyboard
说明:
Xcode11默认使用SwiftUI来做App的界面,但SwiftUI这个功能的最低要求版本是iOS13。
目前SwiftUI还有很多地方不太完善,个人建议如果是商业项目的话,还是选择Storyboard
。因为他目前仍旧是苹果性价比比较高的一种快速开发界面的方法(较成熟+上手快)。
说明:
这个相信大家应该轻车熟路了:App要求的最低版本是多少,这里就选多少,不再赘述。
Surprise!编译之后错误依旧
[图片上传中…(image-308aec-1571841138041-7)]
AppDelegate.swift
和SceneDelegate.swift
。关于iOS13有改动或新登场的这两个文件,在我的每个教程的SwiftUI部分都有讲到,欢迎大家来捧捧场: m.cctalk.com/inst/s9vfhe…
好,继续。
AppDelegate.swift
文件,拉到最后的两个方法那里:Add @available attribute to enclosing instance method
,点Fix说明:
--从错误的字面意义上就可以得知,无非就是一些类型只能在iOS13上使用,我们现在要在低版本的iOS上使用,他自然不干。
--Add @available attribute to enclosing instance method
的意思是:在class的某个方法前面加上@available(iOS 13.0, *)
,表明只有版本大于等于iOS13的时候才加载这个方法。
--因为AppDelegate.swift
里的didFinishLaunchingWithOptions
方法是无论什么版本的iOS都需要用的,所以我们在Fix的时候不能选择Add @available attribute to enclosing class
(在整个class前面加上@available(iOS 13.0, *)
)
SceneDelegate.swift
文件,选择任意一个红圈白点,点击Add @available attribute to enclosing class
的Fix说明:
SceneDelegate.swift
文件是iOS13新登场的,所以给整个class加上@available(iOS 13.0, *)
是OK的:
并且控制台会出现:
The app delegate must implement the window property if it wants to use a main storyboard file
在iOS13中,AppDelegate
把iOS13之前的那些管理整个App生命周期等的任务都委托给了SceneDelegate
,所以原来AppDelegate
的window
属性自然也就跑到SceneDelegate
里面去了:
而这个SceneDelegate
class又被我们标注了只能iOS13可以用,也就是说iOS13以下版本的iPhone是不会执行整个SceneDelegate
class的代码的,所以在低版本中系统就找不到window
属性。
在AppDelegate
的class里面声明window
属性:
这样之后:
iOS13以下版本的时候,window
就走AppDelegate
这里,不会黑屏;
iOS13或以上版本的时候,window
就走SceneDelegate
(被委托人)这里,不会黑屏;
手机扫一扫
移动阅读更方便
你可能感兴趣的文章