Skip to content

Instantly share code, notes, and snippets.

@rodericj
Created May 10, 2014 00:45
Show Gist options
  • Save rodericj/8b4e585ac50949806756 to your computer and use it in GitHub Desktop.
Save rodericj/8b4e585ac50949806756 to your computer and use it in GitHub Desktop.
[[(id)self.tableView.delegate rac_signalForSelector:@selector(scrollViewDidScroll:)] subscribeNext:^(RACTuple *tuple) {
UITableView *tableView = [[tuple allObjects] firstObject];
if (tableView.contentOffset.y < -90) {
@strongify(self)
[self.navigationController dismissViewControllerAnimated:YES completion:nil];
}
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment