美文网首页
Variable --> BehaviorRelay

Variable --> BehaviorRelay

作者: CN_HarrySun | 来源:发表于2018-08-10 14:12 被阅读39次

    let myVariable = Variable<Bool>(true)
    myVariable.value = false
    

    改为

    let myBehaviorRelay = BehaviorRelay<Bool>(value: true)
    myBehaviorRelay.accept(false)
    

    相关文章

      网友评论

          本文标题:Variable --> BehaviorRelay

          本文链接:https://www.haomeiwen.com/subject/ndlfkftx.html