Skip to content

Instantly share code, notes, and snippets.

@ramakser
Created February 17, 2016 07:21
Show Gist options
  • Save ramakser/b518cca26b742546d1a9 to your computer and use it in GitHub Desktop.
Save ramakser/b518cca26b742546d1a9 to your computer and use it in GitHub Desktop.
#pragma mark UIGestureRecognizerDelegate methods
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch
{
if ([touch.view isDescendantOfView:autocompleteTableView]) {
return NO;
}
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment