MKUserLocation是可选择的,错误地拦截来自自定义MKAnnotationViews的触摸

问题描述 投票:7回答:2

我在我的iOS应用程序中有一个普通的地图,其中“显示用户位置”已启用 - 这意味着我在地图上有我的正常蓝点,显示我的位置和准确度信息。代码中禁用了标注。

但我也有定制的MKAnnotationViews,它们在地图周围绘制,所有这些都有自定义标注。

这工作正常,但问题是当我的位置在MKAnnotationView的位置时,蓝点(MKUserLocation)拦截触摸,因此MKAnnotationView不会被触及。

如何禁用蓝点上的用户交互,以便MKAnnotationViews而不是蓝点拦截触摸?

这是我到目前为止所做的:

- (MKAnnotationView *)mapView:(MKMapView *)map viewForAnnotation:(id <MKAnnotation>)annotation;
{
    if (annotation == self.mapView.userLocation)
    {
        [self.mapView viewForAnnotation:annotation].canShowCallout = NO;
        return [self.mapView viewForAnnotation:annotation];
    } else {
        ...
    }
}
ios objective-c mapkit mkannotationview mkuserlocation
2个回答
15
投票

禁用标注不会禁用视图上的触摸(didSelectAnnotationView仍会被调用)。

要禁用注释视图上的用户交互,请将其enabled属性设置为NO

但是,我没有在enabled委托方法中将NO设置为viewForAnnotation,而是建议在didAddAnnotationViews委托方法中进行,而在viewForAnnotation中,只需返回nilMKUserLocation

例:

- (MKAnnotationView *)mapView:(MKMapView *)map viewForAnnotation:(id <MKAnnotation>)annotation;
{
    if ([annotation isKindOfClass:[MKUserLocation class]])
    {
        return nil;
    }

    //create annotation view for your annotation here...
}

-(void)mapView:(MKMapView *)mapView didAddAnnotationViews:(NSArray *)views
{
    MKAnnotationView *av = [mapView viewForAnnotation:mapView.userLocation];
    av.enabled = NO;  //disable touch on user location
}

0
投票

Swift 4.2示例:

func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation)   ->     MKAnnotationView? {
    if annotation is MKUserLocation {
        return nil
    }
// Add custom annotation views here.
}

func mapView(_ mapView: MKMapView, didAdd views: [MKAnnotationView])      {
    // Grab the user location annotation from your IB Outlet map view.
    let userLocation = mapView.view(for: mapView.userLocation)
    userLocation?.isEnabled = false
}
© www.soinside.com 2019 - 2024. All rights reserved.