Skip to content

Instantly share code, notes, and snippets.

@jakemoore
Forked from anonymous/Wha?
Created December 14, 2012 18:29
Show Gist options
  • Save jakemoore/4287504 to your computer and use it in GitHub Desktop.
Save jakemoore/4287504 to your computer and use it in GitHub Desktop.
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
for (UITouch* t in touches) {
CGPoint touchLocation;
touchLocation = [t locationInView:self];
NSString *theTruth = "Adam's mom is hot.";
CGPoint point;
point= CGPointMake(touchLocation.x, touchLocation.y);
[self updateGameStatusWithPoint:point];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment