当前位置:   article > 正文

[SwiftUI]工程最低适配iOS13_main()' is only available in ios 14.0 or newer

main()' is only available in ios 14.0 or newer

问题:

新建工程,选择最低支持iOS13报错:

'main()' is only available in iOS 14.0 or newer

'Scene' is only available in iOS 14.0 or newer

'WindowGroup' is only available in iOS 14.0 or newer

解决:

注释掉上面代码,重新创建一个AppDelegate作为入口:

  1. import Foundation
  2. import SwiftUI
  3. @UIApplicationMain
  4. class AppDelegate: UIResponder, UIApplicationDelegate {
  5. var window: UIWindow?
  6. func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
  7. // 创建一个UIHostingController来托管你的ContentView
  8. let contentView = ContentView()
  9. // 设置window
  10. let window = UIWindow(frame: UIScreen.main.bounds)
  11. window.backgroundColor = .white
  12. window.rootViewController = UIHostingController(rootView: contentView)
  13. self.window = window
  14. window.makeKeyAndVisible()
  15. return true
  16. }
  17. }

info.plist中移除Application Scene Manifest

然后,重新运行就没问题了

注意:

如果需要支持跨平台还是乖乖最低支持iOS14

使用 @UIApplicationMain 并定义一个继承自 UIResponder 和遵循 UIApplicationDelegate 协议的 AppDelegate 类是 UIKit 应用程序的传统启动方式,它专门用于 iOS 和 iPadOS 平台。这段代码不能直接用于跨平台运行,因为它仅适用于 iOS 和 iPadOS,并且使用了 UIKit 的特定类和方法,比如 UIWindow 和 UIHostingController

建议:

强烈建议不要管iOS13,最低适配到iOS14。现在iOS15之下的设备只占3%,这3%中还包含iOS14在其中。就我的感受而言,SwiftUI兼容不兼容iOS13完全就像是两种工作量。

iOS17出来前:

iOS17出来后到现在:

数据来源: https://mixpanel.com/trends

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/547130
推荐阅读
  

闽ICP备14008679号