ReactiveCocoa / ReactiveObjC

The 2.x ReactiveCocoa Objective-C API: Streams of values over time
MIT License
2.6k stars 496 forks source link

fromProtocol the subscribeNext block never called #116

Closed programer001 closed 7 years ago

programer001 commented 7 years ago

[[self.phoneNumberField.rac_textSignal rac_signalForSelector:@selector(textFieldDidEndEditing:) fromProtocol:@protocol(UITextFieldDelegate)]subscribeNext:^(id x) {

}];
self.phoneNumberField.delegate = self;

i do not know what can i do?

faimin commented 7 years ago

i think it should be

[[self rac_signalForSelector:@selector(textFieldDidEndEditing:) fromProtocol:@protocol(UITextFieldDelegate)]subscribeNext:^(id x) {
    // do something
}];
programer001 commented 7 years ago

thank you