gpt4 book ai didi

objective-c - [UITextField rac_newTextChannel] 如何用于将 UITextField 文本双向绑定(bind)到 ReactiveCocoa 中的模型对象?

转载 作者:太空狗 更新时间:2023-10-30 03:48:32 27 4
gpt4 key购买 nike

假设我有以下内容:

UITextField *textField = [[UITextField alloc] init];

和一个模型对象:

JSModel *model = [[JSModel alloc] init];

以下将给我一个双向绑定(bind)(也许这种方法有我没有看到的缺点?):

RAC(model, text) = textField.rac_textSignal;
RAC(textField, text) = RACObserve(model, text);

如何使用 [UITextField rac_newTextChannel] 来实现这种双向绑定(bind)?

最佳答案

类似于:

RACChannelTerminal *textFieldTerminal = [self.textField rac_newTextChannel];
RACChannelTerminal *modelTerminal = RACChannelTo(self.model, text);
[modelTerminal subscribe:textFieldTerminal];
[[textFieldTerminal skip:1] subscribe:modelTerminal];

关于objective-c - [UITextField rac_newTextChannel] 如何用于将 UITextField 文本双向绑定(bind)到 ReactiveCocoa 中的模型对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22470478/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com