I don't know if ReactiveCocoa can do that, or if it's one of the right use case for it, basically I want to setups 2 or more views the exact same ways, for instance
[self.photoOrVideoLabel setTextColor:[UIColor glInboxGrayTextColor]];
[self.photoOrVideoLabel setFont:[UIFont glProximaNovaRegularWithSize:12.0f]];
[self.writeSomethingLabel setTextColor:[UIColor glInboxGrayTextColor]];
[self.writeSomethingLabel setFont:[UIFont gLBaskervilRegularWithSize:12.0f]];
Is there a way with reactiveCocoa to merge them and configure them in the same block ?