热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

通过url设置MKPinAnnotationView的图像-SetMKPinAnnotationView'simageviaurl

IsitpossibletoprogrammaticallysettheimageforanMKPinAnnotationViewbasedonURL?SofarIh

Is it possible to programmatically set the image for an MKPinAnnotationView based on URL? So far I have this:

是否可以基于URL以编程方式为MKPinAnnotationView设置图像?到目前为止我有这个:

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id)annotation {
static NSString *identifier = @"infl8Node";

if ([annotation isKindOfClass:[infl8Node class]]) {
    MKPinAnnotationView *annotatiOnView= (MKPinAnnotationView *) [_mapView dequeueReusableAnnotationViewWithIdentifier:identifier];
    if (annotatiOnView== nil) {
        annotatiOnView= [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:identifier];
    } else {
        annotationView.annotation = annotation;
    }

    annotationView.enabled = YES;
    annotationView.canShowCallout = YES;
    annotationView.image = [UIImage imageNamed:@"invisible.png"];
    annotationView.animatesDrop = YES;

    //Add image from url
    NSURL *url = [NSURL URLWithString: @"http://cdn2.raywenderlich.com/downloads/arrest.png"];
    UIImage *image = [UIImage imageWithData: [NSData dataWithContentsOfURL:url]];
    UIImageView *imgView = [[UIImageView alloc] initWithImage:image];
    [annotationView addSubview:imgView];

    return annotationView;
}
return nil;
}

However it results in something like this: img on pin

但是它会产生这样的结果:

Has anyone done this or have a good idea as to how to accomplish this?

有没有人这样做或有一个好主意如何实现这一目标?

1 个解决方案

#1


1  

Use MKAnnotationView instead of MKPinAnnotationView. Replace it

使用MKAnnotationView而不是MKPinAnnotationView。代替它

 annotatiOnView= [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:identifier];
        replace use MKAnnotationView here

EDIT : One Solution is use custom animation.

编辑:一个解决方案是使用自定义动画。

Refer MKAnnotationView Animation example an example of how I drop my MKAnnotationViews using custom animation.

请参阅MKAnnotationView动画示例,了解如何使用自定义动画删除MKAnnotationViews。


推荐阅读
author-avatar
初学
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有