Resize MKAnnotationView Image 当地图放大和缩小时? 此方法在 iOS5 上成功,但在 iOS6 上失败。
我直接更改了 MKAnnotationView 的变换,没有运气。MKAnnotationView 只在瞬间调整大小(当在 MKMapView 内部进行 touch up 时,在 touch up 完成后,MKAnnotationView 将恢复原始大小)。
我的代码如下:
- (void)mapView:(MKMapView *)mapView regionDidChangeAnimated:(BOOL)animated {
for (id <MKAnnotation>annotation in _mapView.annotations) {
// if it's the user location, just return nil.
if ([annotation isKindOfClass:[MKUserLocation class]])
continue;
// handle our custom annotations
//
if ([annotation isKindOfClass:[XPMKAnnotation class]])
{
// try to retrieve an existing pin view first
MKAnnotationView *pinView = [_mapView viewForAnnotation:annotation];
//resize the pin view
double zoomLevel = [_mapView getZoomLevel];
double scale = (1.0 * zoomLevel / 16) + 0.5;
pinView.transform = CGAffineTransformMakeScale(scale, scale);
}
}
}
我们可以在 iOS6 上调整 MKAnnotationView 的大小吗?有人知道任何方法吗?