我有一个带有annotationViews的mapView和userLocation蓝点.
[self.mapView setShowsUserLocation:YES];
annotationViews是可选择的并具有标注.
但是,如果annotationView靠近用户的位置,有时蓝点会窃取触摸.
我可以设置annotationView.enabled = NO;并且它将显示annotationView但它不会通过annotationView从关闭中窃取触摸.
我想将用户位置蓝点annotationView设置为enabled = NO,因此它不会通过annotationViews窃取关闭的触摸.
我可以设置蓝点的标题:
self.mapView.userLocation.title = @"title here..."
但我无法禁用蓝点.
谢谢!