84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
假设有两个 Siwtch 需要互异绑定,用 rac 该怎么写?
UISwitch *switch1; UISwitch *switch2; switch1.action = { switch2.on = !switch2.on; } switch2.action = { switch1.on = !switch1.on; }
认证0级讲师
Est-ce vrai ?
switch1.on = YES; switch2.on = NO; RACChannelTerminal *t1 = switch1.rac_newOnChannel; RACChannelTerminal *t2 = switch2.rac_newOnChannel; [[t1 map:^id(NSNumber *on) { return @(![on boolValue]); }] subscribe:t2]; [[t2 map:^id(NSNumber *on) { return @(![on boolValue]); }] subscribe:t1];
Trouvé une solution :
RACChannelTerminal *aButtonChannel = [aButton rac_newSelectedChannel]; RACChannelTerminal *bButtonChannel = [bButton rac_newSelectedChannel]; [[aButtonChannel not] subscribe:bButtonChannel]; [[bButtonChannel not] subscribe:aButtonChannel];
Est-ce vrai ?
Trouvé une solution :