Skip to content

Instantly share code, notes, and snippets.

@xr1337
Created June 4, 2013 08:32
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 xr1337/5704489 to your computer and use it in GitHub Desktop.
Save xr1337/5704489 to your computer and use it in GitHub Desktop.
PointInside
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event{
if (CGPathContainsPoint(touchPath, NULL, point, NO)) {
return YES;
}
return NO;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment