質問

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])
{
役に立ちましたか?

解決

You want to check if the touch's view is a CustomAnnotationView class.

[super touchesBegan:touches withEvent:event];
    UITouch *touch = [touches anyObject];
    if ([touch.view isKindOfClass:[CustomAnnotationView class]])
    {
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top