我有以下课程:
struct PriceFormatter {
@AppStorage(UserDefaultsKey.savedCurrency)
var savedCurrency: String?
let price: Float
init(price: Float) {
self.price = price
}
var formatted: String {
return "\(savedCurrency) \(price)"
}
}
以及以下视图:
struct PriceText: View {
let price: Float
var body: some View {
Text(PriceFormatter(price: self.price).formatted)
}
}
我希望在savedCurrency
更改后UserDefaults
后重新渲染视图。
当@AppStorage
是视图的一部分时,我使它易于工作,但是我不确定在这种情况下该怎么做。我试图将@ObservableObject
与@Published
一起使用,或者尝试制作一个Publisher
并订阅它,但是没有成功。
答案 0 :(得分:0)
@Asperi指出,@AppStorage
仅应在View
中使用。隐式也写在这里:https://developer.apple.com/documentation/swiftui/appstorage