栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

Swift-将MKAnnotationView添加到MKMapView

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Swift-将MKAnnotationView添加到MKMapView

您需要实现

viewForAnnotation
委托方法并
MKAnnotationView
从那里返回。

这是一个例子:

func mapView(mapView: MKMapView!, viewForAnnotation annotation: MKAnnotation!) -> MKAnnotationView! {    if (annotation is MKUserLocation) {        //if annotation is not an MKPointAnnotation (eg. MKUserLocation),        //return nil so map draws default view for it (eg. blue dot)...        return nil    }    let reuseId = "test"    var anView = mapView.dequeueReusableAnnotationViewWithIdentifier(reuseId)    if anView == nil {        anView = MKAnnotationView(annotation: annotation, reuseIdentifier: reuseId)        anView.image = UIImage(named:"xaxas")        anView.canShowCallout = true    }    else {        //we are re-using a view, update its annotation reference...        anView.annotation = annotation    }    return anView}

请记住,当您要使用自己的自定义图像时,需要创建一个 普通

MKAnnotationView
图像。本
MKPinAnnotationView
应只用于标准引脚注解。

另请注意,您不应

locationManager.location
在致电后立即尝试访问
startUpdatingLocation
。可能尚未准备好。

使用

didUpdateLocations
委托方法。

您还需要致电

requestAlwaysAuthorization
/
requestWhenInUseAuthorization



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/425737.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号