首页 > 解决方案 > SwiftUI 是否向后兼容 iOS 12.x 及更早版本?

问题描述

如果我有一个使用 SwiftUI 制作的应用程序,它是否适用于 iOS 13 以下的 iOS?

标签: swiftios12swiftui

解决方案


我刚刚在 Xcode 11 中检查了它,并且可以确认它不会向后兼容,如 SwiftUI 的View实现所示:

/// A piece of user interface.
///
/// You create custom views by declaring types that conform to the `View`
/// protocol. Implement the required `body` property to provide the content
/// and behavior for your custom view.
@available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
public protocol View : _View {

    /// The type of view representing the body of this view.
    ///
    /// When you create a custom view, Swift infers this type from your
    /// implementation of the required `body` property.
    associatedtype Body : View

    /// Declares the content and behavior of this view.
    var body: Self.Body { get }
}

推荐阅读