- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *mousePoint = [touches anyObject];
CGPoint point = [mousePoint locationInView:self.view];
_didClickMark=CGRectContainsPoint(mImageView.frame, point);
if(_didClickMark)
// show popover
}
Это может помочь вам.