RACCommandExample icon indicating copy to clipboard operation
RACCommandExample copied to clipboard

Results 2 RACCommandExample issues
Sort by recently updated
recently updated
newest added

``` RACSignal *completedMessageSource = [self.subscribeCommand.executionSignals flattenMap:^RACStream *(RACSignal *subscribeSignal) { return [[[subscribeSignal materialize] filter:^BOOL(RACEvent *event) { return event.eventType == RACEventTypeCompleted; }] map:^id(id value) { return NSLocalizedString(@"Thanks", nil); }]; }]; ``` `completedMessageSource`...