Skip to content

Instantly share code, notes, and snippets.

@alexrepty
Created February 12, 2010 15:53
Show Gist options
  • Save alexrepty/302673 to your computer and use it in GitHub Desktop.
Save alexrepty/302673 to your computer and use it in GitHub Desktop.
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
if ([self pointInside:point withEvent:event]) {
return _scrollView;
}
return nil;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment