I'm trying to figure out if there's a way to attach a swipe to a grid (that does not have horizontal scrolling) so that I can use that action to slide the grid off screen if they swipe left.
Dooh... apparently it was much easier than I realized...
UISwipeGestureRecognizer *swipeLeftRecognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeLeftRecognizer:)];
[swipeLeftRecognizer setDirection:UISwipeGestureRecognizerDirectionLeft];
[gridView addGestureRecognizer:swipeLeftRecognizer];