ReactiveCocoa combine SignalProducers into one
问题 I'm using ReactiveCocoa and I have several SignalProducers let center = NSNotificationCenter.defaultCenter() let signalProducer1 = center.rac_notification(name: notificationName1, object: nil) let signalProducer2 = center.rac_notification(name: notificationName2, object: nil) let signalProducer3 = center.rac_notification(name: notificationName3, object: nil) I want to combine them into a single signal producer that produces a signal whenever one of them produces a signal. At first the