繁体   English   中英

SwiftUI @AppStorage 不会在 function 中刷新

[英]SwiftUI @AppStorage doesn't refresh in a function

我正在尝试重新加载每个.onAppear 的数据,但是如果我在 SettingsView 中更改 @AppStorage nearMeter 的值,它不会更新 reloadNearStops 函数中的值并使用以前的 @AppStorage 值。

    struct SettingsView: View {
        @AppStorage(“nearMeter”) var nearMeter: Int = 1
        @State var meters = ["100 m","200 m","400 m","500 m","750 m","1 km"]
    
    var body: some View {


    ………
    
                            Picker(selection: $nearMeter, label: HStack {
                                    Text(NSLocalizedString(“near_stops_distance”, comment: ""))
                            }) {
                                ForEach(0 ..< meters.count, id: \.self) {
                                        Text(meters[$0])
                                }
                            }}}



    struct FavouritesView: View {
 @AppStorage(“nearMeter”) var nearMeter: Int = 1
        
            func reloadNearStops(nearMeter: Int) {
                
                print(nearMeter)
                readNearStopsTimeTable.fetchTimeTable(nearMeter:        getLonLatSpan(nearMeter: nearMeter), lat: (locationManager.lastLocation?.coordinate.latitude)!, lon: (locationManager.lastLocation?.coordinate.longitude)!)
            }
            
            
            func getLonLatSpan(nearMeter: Int) -> Double {
                let meters = [100,200,400,500,750,1000]
                
                if nearMeter < meters.count {
                    return Double(meters[nearMeter]) * 0.00001
                }
                else {
                    return 0.001
                }
            }
        var body: some View {
    
      
    .....
        
        ……….
        .onAppear() {
                    
                    if locationManager.lastLocation?.coordinate.longitude != nil {
                            if hasInternetConnection {
                                reloadNearStops(nearMeter: nearMeter)
                            }
                    }
        
        }}

AppStorage不会调用 function 但onChange可以在AppStorage发生更改时调用 function。

struct StorageFunctionView: View {
    @AppStorage("nearMeter") var nearMeter: Int = 1
    @State var text: String = ""
    var body: some View {
        VStack{
            Text(text)
            Button("change-storage", action: {
                nearMeter = Int.random(in: 0...100)
            })
        }
        //This will listed for changes in AppStorage
        .onChange(of: nearMeter, perform: { newNearMeter in
            //Then call the function and if you need to pass the new value do it like this
            fetchSomething(value: newNearMeter)
        })
    }
    func fetchSomething(value: Int)  {
        text = "I'm fetching \(value)"
    }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM