每当一组SignalProducers更改时,如何触发一个代码块?换句话说,我如何摆脱当前的冗余代码:
property1.producer.startWithValues { (value) in
// do stuff with property1.value and property2.value
}
property2.producer.startWithValues { (value) in
// do the same stuff with property1.value and property2.value
}
您可以使用combineLatest
创建一个包含两个值的新属性:
let prop = property1.combineLatest(with: property2)
prop.producer.startWithValues { (val1, val2) in
// do stuff here
}
如果任何一个值更改,则将触发块。
您可以将代码块保存为变量,然后您只需将该变量分配给property1.producer.startWithValues
。