MKOverlayView和触摸 [英] MKOverlayView and touches

查看:130
本文介绍了MKOverlayView和触摸的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在地图上有一个自定义的MKOverlayView,我想检测一下触摸。但是,我似乎无法让叠加层响应。我希望它会像忘记将userInteractionEnabled设置为YES一样愚蠢...但是唉,没有运气

i have an custom MKOverlayView on my map and i would like to detect touches. However, i can't seem to get the overlay to respond. i was hoping it was going to be something as dumb as forgetting to set userInteractionEnabled to YES...but alas, no luck there

....目前,这里是我是怎么做到的:

....currently, here is how i have it:

//map delegate overlay:
- (MKOverlayView *)mapView:(MKMapView *)mapView viewForOverlay:(id <MKOverlay>)overlay
{

     if (_radiusView !=nil) {
          [_radiusView removeFromSuperview];
          [_radiusView release];
          _radiusView = nil;
     }
     _radiusView = [[CustomRadiusView alloc]initWithCircle:overlay];
     _radiusView.userInteractionEnabled = YES;
     _radiusView.strokeColor = [UIColor blueColor];
     _radiusView.fillColor = [UIColor grayColor];
     _radiusView.lineWidth = 1.0;
     _radiusView.alpha = 0;

     //fade in radius view
     [UIView beginAnimations:@"fadeInRadius" context:nil];
     [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
     [UIView setAnimationDuration:0.6];
     _radiusView.alpha = .3;
     [UIView commitAnimations];

     return _radiusView;

}   

我的自定义覆盖类只是实现touchesBegan,并扩展MKCircleView

my custom overlay class simply implements touchesBegan, and extends MKCircleView

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
  NSLog(@"touch!");
}


推荐答案

首先,添加手势识别器到你的MKMapView(注意:这是假设ARC):

Firstly, add a gesture recogniser to your MKMapView (note: this is assuming ARC):

[myMapView addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(mapTapped:)]];

在识别器操作中,您可以通过类似的方式确定点击点是否在视图中以下:

In the recognizer action, you can figure out whether the tap point was in a view via something like the following:

- (void)mapTapped:(UITapGestureRecognizer *)recognizer
{
  MKMapView *mapView = (MKMapView *)recognizer.view;
  id<MKOverlay> tappedOverlay = nil;
  for (id<MKOverlay> overlay in mapView.overlays)
  {
    MKOverlayView *view = [mapView viewForOverlay:overlay];
    if (view)
    {
      // Get view frame rect in the mapView's coordinate system
      CGRect viewFrameInMapView = [view.superview convertRect:view.frame toView:mapView];
      // Get touch point in the mapView's coordinate system
      CGPoint point = [recognizer locationInView:mapView];
      // Check if the touch is within the view bounds
      if (CGRectContainsPoint(viewFrameInMapView, point))
      {
        tappedOverlay = overlay;
        break;
      }
    }
  }
  NSLog(@"Tapped view: %@", [mapView viewForOverlay:tappedOverlay]);
}

这篇关于MKOverlayView和触摸的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆