- (void) touchesEnded: (NSSet *) touches withEvent: (UIEvent *) event { UITouch *touch = [touches anyObject]; CGPoint point = [touch locationInView: self]; if (CGRectContainsPoint(self.bounds, point)) { NSLog (@"YAY!"); } } // touchesEnded