Skip to content

Instantly share code, notes, and snippets.

@lxcid
Created June 26, 2012 15:16
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 lxcid/2996380 to your computer and use it in GitHub Desktop.
Save lxcid/2996380 to your computer and use it in GitHub Desktop.
Hacking view... like a noob...
#import "ProxyView.h"
@implementation ProxyView
@synthesize targetView = _targetView;
- (UIView *)hitTest:(CGPoint)thePoint withEvent:(UIEvent *)theEvent {
return [self.targetView hitTest:thePoint withEvent:theEvent];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment