Skip to content

Instantly share code, notes, and snippets.

@StephanPartzsch
Last active March 19, 2020 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StephanPartzsch/5627928 to your computer and use it in GitHub Desktop.
Save StephanPartzsch/5627928 to your computer and use it in GitHub Desktop.
[UntouchableUIViewContainer] UIView that does not recognize any touch on itself. Only touches on subviews are detected. (#UI)
#import <Foundation/Foundation.h>
@interface UntouchableUIViewContainer : UIView
@end
#import "UntouchableUIViewContainer.h"
@implementation UntouchableUIViewContainer
-(UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
{
UIView* view = [super hitTest:point withEvent:event];
if(view == self)
{
view = nil;
}
return view;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment