Skip to content

Instantly share code, notes, and snippets.

@sdabet
Created January 23, 2013 18:02
Show Gist options
  • Save sdabet/4611091 to your computer and use it in GitHub Desktop.
Save sdabet/4611091 to your computer and use it in GitHub Desktop.
@synthesize touchArea=_touchArea;
// ...
// Initialize the touchArea to the outside box
-(void) setContentSize:(CGSize)contentSize {
[super setContentSize:contentSize];
_touchArea = CGRectMake(0, 0, contentSize_.width, contentSize_.height);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment