Skip to content

Instantly share code, notes, and snippets.

View foxsofter's full-sized avatar
🎯
Focusing

foxsofter foxsofter

🎯
Focusing
  • shanghai
View GitHub Profile
@foxsofter
foxsofter / RAC+operation.m
Last active March 6, 2020 09:19
ReactiveCocoa v2.5 operation demo
- (void)testFilter {
RACSignal *signal = [@[ @1, @2, @3 ] rac_sequence].signal;
signal = [signal filter:^BOOL(NSNumber *value) {
return value.integerValue % 2;
}];
[signal subscribeNext:^(NSNumber *value) {
NSLog(@"%@", value);
}];
}