How to detect touch on custom annotationView in (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event ?
I use that code, but it not works
[super touchesBegan:touches withEvent:event];
UITouch *touch = [touches anyObject];
if (touch.view == [CustomAnnotationView class])
{