Skip to content

Instantly share code, notes, and snippets.

@ashfurrow
Last active December 17, 2015 14:09
Show Gist options
  • Select an option

  • Save ashfurrow/5622002 to your computer and use it in GitHub Desktop.

Select an option

Save ashfurrow/5622002 to your computer and use it in GitHub Desktop.
ReactiveCocoa Filter Example
[[self.gestureRecognizerIsRunningSubject filter:^BOOL(NSNumber *gestureRecognizerIsRunning) {
return !(gestureRecognizerIsRunning.boolValue);
}] subscribeNext:^(id x) {
[self.tableView flashScrollIndicators];
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment