Created
May 10, 2014 00:45
-
-
Save rodericj/8b4e585ac50949806756 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[(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