Jump to content
Wikipedia The Free Encyclopedia

SwiftUI

From Wikipedia, the free encyclopedia
User interface framework
This article relies largely or entirely on a single source . Relevant discussion may be found on the talk page. Please help improve this article by introducing citations to additional sources.
Find sources: "SwiftUI" – news · newspapers · books · scholar · JSTOR
(January 2024)
SwiftUI
Developer(s) Apple Inc.
Initial releaseJune 3, 2019
Operating system iOS, iPadOS, macOS, tvOS, watchOS, visionOS
Type Software framework
License Proprietary
Websitehttps://developer.apple.com/xcode/swiftui/

SwiftUI is a declarative framework[1] for building user interfaces for iOS, iPadOS, watchOS, tvOS, visionOS and macOS, developed by Apple Inc. for the Swift programming language.

Overview

[edit ]

SwiftUI is declarative, contrasting with the imperative syntax used in other Apple development frameworks such as UIKit and AppKit. SwiftUI allows for 2D drawing, animations, event handling, widgets, and data binding. SwiftUI automatically synchronizes between UI views and data.[2]

SwiftUI integrates with other Apple technologies, such as Xcode and Swift Playgrounds to provide for real-time previews during editing,[3] [4] alongside support for debugging and other development features.

SwiftUI allows for interoperability with UIKit and AppKit views via the UIViewRepresentable and NSViewRepresentable protocols respectively.[5] [6]

History

[edit ]

SwiftUI was announced at the company's Worldwide Developers Conference (WWDC) on June 3, 2019, and was added in iOS 13 and macOS Catalina.[1]

During WWDC 2020 and the iOS 14 release cycle, Apple natively added support for maps with the Map view, with an interface based on Apple Maps via MapKit.[7] MapKit allows for map annotation and satellite imagery.

During WWDC 2021 and the iOS 15 release cycle, Apple added the Canvas element, adding support for Immediate mode drawing and performant 2D drawing.[8]

During WWDC 2022 and the iOS 16 release cycle, Apple released Swift Charts, a framework for making customizable and accessible charts.[9]

During WWDC 2023, Apple announced the Apple Vision Pro, and support for the device was added to SwiftUI, alongside new views for AR content such as RealityView and ImmersiveSpace.[10]

Examples

[edit ]

The following is an example of a simple Hello World program. The @main attribute defines the entry point into the app. It is standard practice in SwiftUI to separate the application struct and views into different structs, according to the Model–View–ViewModel (MVVM) architectural pattern.[11] [self-published source? ]

import SwiftUI
@main
struct AnApp: App {
 var body: some Scene {
 WindowGroup {
 ContentView()
 }
 }
}
struct ContentView: View {
 var body: some View {
 Text("Hello, World!")
 }
}

References

[edit ]
  1. ^ a b Mayo, Benjamin (June 3, 2019). "Apple announces SwiftUI, a modern declarative user interface framework for Apple platforms". 9to5mac.com. Retrieved January 22, 2024.
  2. ^ "SwiftUI". Apple Developer Documentation. Retrieved 2024年01月10日.
  3. ^ "Previews in Xcode". Previews in Xcode – Apple Developer Documentation. Archived from the original on 2023年11月07日. Retrieved 2023年11月07日.
  4. ^ "Swift Playgrounds". Apple Developer. Retrieved 2024年01月31日.
  5. ^ "Interfacing with UIKit". Apple Developer Documentation. Retrieved 2024年01月31日.
  6. ^ "AppKit integration". Apple Developer Documentation. Retrieved 2024年10月06日.
  7. ^ "MapKit for SwiftUI". Apple Developer Documentation. Retrieved 2024年01月10日.
  8. ^ "Canvas". Apple Developer Documentation. Retrieved 2024年01月31日.
  9. ^ "Swift Charts". Apple Developer Documentation. Retrieved 2024年01月31日.
  10. ^ "Meet SwiftUI for spatial computing - WWDC23 - Videos". Apple Developer. Retrieved 2024年01月31日.
  11. ^ Hudson, Paul (2018). Swift Design Patterns. Paul Hudson.
[edit ]

Further reading

[edit ]
iOS and iOS-based products
Hardware
iPhone
iPod Touch
iPad
Other
Software
OS
Derived from iOS
Features
SDK & API
Bundled apps
Discontinued
Apple apps
Discontinued
Services
Discontinued
Other

AltStyle によって変換されたページ (->オリジナル) /