What is '@AppStorage' in SwiftUI
@AppStorage
New in iOS 14
AppStorage는 UserDefaults에서 값을 읽기 위한 전용 propertyWrapper이다.
이 wrapper는 UserDefaults의 key를 감시하고 해당 key가 변경되면 UI를 새로 고친다.
Declaration
@frozen @propertyWrapper struct AppStorage<Value>
New in iOS 14
AppStorage는 UserDefaults에서 값을 읽기 위한 전용 propertyWrapper이다.
이 wrapper는 UserDefaults의 key를 감시하고 해당 key가 변경되면 UI를 새로 고친다.
Declaration
@frozen @propertyWrapper struct AppStorage<Value>
what is @frozen?
what is @propertyWrapper?
Parameters
public init(wrappedValue: Value, _ key: String, store: UserDefaults? = nil)
wrappedValue
value가 정해지지 않으면 default value가 적용된다.
key
UserDefaults에서 값을 읽고 쓰기 위한 key
store
The user defaults store to read and write to. A value of
nil
will use the user default store from the environment.
Example
struct ContentView: View {
/// "Anonymous" 값은 프로그램이 "username" key를 찾지 못한 경우에 사용된다.
@AppStorage("username") var username: String = "Anonymous"
var body: some View {
VStack {
Text("Welcome, \(username)!")
Button("Log in") {
username = "@haanwave"
}
}
}
}
cf.
https://developer.apple.com/documentation/swiftui/appstorage
https://www.hackingwithswift.com/quick-start/swiftui/what-is-the-appstorage-property-wrapper
Author And Source
이 문제에 관하여(What is '@AppStorage' in SwiftUI), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@haanwave/What-is-AppStorage-in-SwiftUI저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)