when instead a textField longer the firstResponder, does not send any signal value and the text color is not correct, how can I fix it?
RAC(self.textField, textColor) = [RACSignal
combineLatest:@[self.textField.rac_textSignal]
reduce:^(NSString *firstName) {
if (firstName.length > 5) {
return [UIColor blueColor];
}else{
return [UIColor redColor];
}
}];