objective-c – iOS中的自定义注释图像

前端之家收集整理的这篇文章主要介绍了objective-c – iOS中的自定义注释图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图用特定的图像替换典型的iOS mapkit“pin”.我是编码的新手,所以我不确定为什么这不起作用,但这是我尝试过的:

对于该方法

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{

除此之外,我还有:

pinView.animatesDrop=YES;
pinView.canShowCallout=YES;
//pinView.pinColor=MKPinAnnotationColorPurple;
UIImage *pinImage = [UIImage imageNamed:@"Jeff.png"];
[pinView setImage:pinImage];

但是,即使代码编译得很好,pinView也没有设置pinImage.任何想法为什么不呢?

解决方法

您所要做的就是将最后一行更改为:
[pinView addSubview:pinImage];

完整的例子:

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{

    MKPinAnnotationView *annView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"ParkingPin"];

    UIImageView *imageView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"pin_parking.png"]] autorelease];

    annView.animatesDrop = TRUE;
    annView.canShowCallout = YES;
    annView.calloutOffset = CGPointMake(-5,5);
    [annView addSubview:imageView];
    return annView;
}

希望这可以帮助!

原文链接:https://www.f2er.com/c/239709.html

猜你在找的C&C++相关文章