我遇到的问题是,当我调用该方法时bringToFrontAnnotation:
,注释会忽略它的minZoomLevel
属性。
这就是我正在做的事情:
- (void)mapView:(SKMapView *)mapView didSelectAnnotation:(SKAnnotation *)annotation
{
[mapView bringToFrontAnnotation:annotation];
//...
}
注释有什么办法可以再次关注其minZoomLevel
属性?