我通过 SwiftUI 中的 UserDefaults (App Storage) 保存整数,但现在的问题是,在不同的结构中,整数仅在重新启动应用程序后加载,但是当您单击视图上的导航链接时,整数应该立即加载即将到来. 整数(通过 if 查询以文本的形式)立即加载到相同的结构中。
如果有人可以帮助我,我很高兴。
先感谢您 :)
演示代码:
import SwiftUI
struct Monday1BCalendarView: View {
@AppStorage("Monday1B") var Monday1B: Int = 1
var body: some View {
Form{
Section(header: Text("Main")){
Button(action: {
self.Montag1B = 0;
}, label: {
Text("Maths")
.foregroundColor(.primary)
})
和加载:
import SwiftUI
struct CalendarMainView: View {
var Monday1B: Int = UserDefaults.standard.integer(forKey: "Monday1B")
var body: some View {
NavigationView {
VStack{
ZStack{
Image("Stundenplan")
.resizable()
.frame(width: 360, height: 200, alignment: .center)
.position(x: 200, y: 100)
if Montag1B == 0 {
Text("Mathe")
}