gpt4 book ai didi

swift - RxSwift : How to add simple observer to int value

转载 作者:行者123 更新时间:2023-11-30 11:26:11 25 4
gpt4 key购买 nike

我想使用 rxswift 来观察我的模型的哈希值。

我有类似注册表之类的东西,只有在某些数据发生更改时我才需要显示“保存更改”。

我没有使用任何绑定(bind)。

我只想观察数据的哈希值。

最佳答案

带有解释的代码:-

//Variable where you can store value as well as you can keep watch on change
let aVar:BehaviorRelay<Int> = BehaviorRelay(value : 0)
let disposeBag = DisposeBag()

//Observe changes
aVar.asObservable().subscribe(onNext: {_ in
//Do whatever you need to do here
}, onError: nil, onCompleted: nil, onDisposed: nil).disposed(by: disposeBag)

关于swift - RxSwift : How to add simple observer to int value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50715701/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com