swift – 每次在ReactiveCocoa 5中UITextField文本属性发生更改时,如何获取信号

前端之家收集整理的这篇文章主要介绍了swift – 每次在ReactiveCocoa 5中UITextField文本属性发生更改时,如何获取信号前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何从用户启动的和以编程方式对UITextField文本属性进行更改的信号?通过使用continuousTextValues,仅在用户启动更改时报告信号.如果以编程方式设置textField.text,则不会触发信号.

这就是我使用continuousTextValues的方式:

textField.reactive.continuousTextValues.observeValues { value in
    print("Value: \(value)")
}

如果我手动设置文本,它不会被触发:

textField.text = "Test"
信号continuousTextValues将仅在用户使用键盘输入时触发.您可以尝试:
var characters = MutableProperty("")

tf.reactive.text <~ characters
tf.reactive.continuousTextValues.observeValues { [weak characters = characters] (text) in
   characters?.value = text!
}
tf.reactive.textValues.observeValues { [weak characters = characters] (text) in
   characters?.value = text!
}

characters.producer.skip(while: { $0.isEmpty }).startWithValues { (text) in
   log.debug("text = \(text)")
}

characters.value = "shaw"
原文链接:https://www.f2er.com/swift/319065.html

猜你在找的Swift相关文章