Skip to content

Instantly share code, notes, and snippets.

@nakiwo
Created July 25, 2012 04:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nakiwo/3174351 to your computer and use it in GitHub Desktop.
Save nakiwo/3174351 to your computer and use it in GitHub Desktop.
subviewだけtouchできるview
@interface TestView : UIView
@end
@implementation TestView
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
{
UIView *view = [super hitTest:point withEvent:event];
if(view == self) {
return nil;
}
return view;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment