IOS开发之地图视图中的可重用对象

       在开发地图应用时,也有一个可重用对象MKPinAnnotationView,它是在地图上的一个标注。使用地图视图的dequeueReusableAnnotationViewWithIdentifier:方法,可以获得MKPinAnnotationView对象。如果没有可重用的MKPinAnnotationView对象,则使用initWithAnnotation:reuseIdentifier:构造器创建。其模式代码如下:

       func mapView(mapView: MKMapView!,

       viewForAnnotation annotation: MKAnnotation!) -> MKAnnotationView! {

       var annotationView = self.mapView

       .dequeueReusableAnnotationViewWithIdentifier("PIN_ANNOTATION")

       as? MKPinAnnotationView

       if annotationView == nil {

       annotationView = MKPinAnnotationView(annotation: annotation,

       reuseIdentifier: "PIN_ANNOTATION")

       }

       annotationView!.pinColor = MKPinAnnotationColor.Purple

       annotationView!.animatesDrop = true 

       annotationView!.canShowCallout = true

       return annotationView!

      } 

       - (MKAnnotationView *) mapView:(MKMapView *)theMapView

       viewForAnnotation:(id ) annotation {

       MKPinAnnotationView *annotationView

       = (MKPinAnnotationView *)[self.mapView

       dequeueReusableAnnotationViewWithIdentifier:@"PIN_ANNOTATION"];

       if(annotationView == nil) {

       annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation

       reuseIdentifier:@"PIN_ANNOTATION"];

       }

       annotationView.pinColor = MKPinAnnotationColorPurple;

       annotationView.animatesDrop = YES; 

       annotationView.canShowCallout = YES;

       return annotationView;

       }

       以上代码是地图视图中常用的处理方式,希望对大家有所帮助。如果还有哪些不明白的地方,可随时来电咨询。本公司专注于南昌APP开发等方面的服务,如有需要,我们将随时为您效劳。

提供全面的搜索引擎优化学习交流,专注网站优化和搜索引擎营销推广服务。用专业的SEO技术为企业网站提升关键词排名,让你的网站不仅满足用户体验还要适合搜索引擎优化规则。
易速网站优化公司 » IOS开发之地图视图中的可重用对象
享更多特权,立即登录下载海量资源
喜欢我嘛?喜欢就按“ctrl+D”收藏我吧!♡