在線客服系統(tǒng)
十三年專(zhuān)注于網(wǎng)站建設(shè)與互聯(lián)網(wǎng)應(yīng)用開(kāi)發(fā),低調(diào)、有情懷的網(wǎng)絡(luò)應(yīng)用服務(wù)商!
南昌百恒科技微信公眾號(hào) 掃一掃關(guān)注
tel-icon全國(guó)服務(wù)熱線:400-680-9298,0791-88117053
掃一掃關(guān)注百恒科技微信公眾號(hào)

IOS開(kāi)發(fā)之地圖視圖中的可重用對(duì)象

百恒科技 2019-01-23 14:46:53 2772
? ? ? ?在開(kāi)發(fā)地圖應(yīng)用時(shí),也有一個(gè)可重用對(duì)象MKPinAnnotationView,它是在地圖上的一個(gè)標(biāo)注。使用地圖視圖的dequeueReusableAnnotationViewWithIdentifier:方法,可以獲得MKPinAnnotationView對(duì)象。如果沒(méi)有可重用的MKPinAnnotationView對(duì)象,則使用initWithAnnotation:reuseIdentifier:構(gòu)造器創(chuàng)建。其模式代碼如下:

? ? ? ?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;
? ? ? ?}

? ? ? ?以上代碼是地圖視圖中常用的處理方式,希望對(duì)大家有所幫助。如果還有哪些不明白的地方,可隨時(shí)來(lái)電咨詢(xún)。本公司專(zhuān)注于南昌APP開(kāi)發(fā)等方面的服務(wù),如有需要,我們將隨時(shí)為您效勞。
400-680-9298,0791-88117053
掃一掃關(guān)注百恒網(wǎng)絡(luò)微信公眾號(hào)

歡迎您的光顧,我們將竭誠(chéng)為您服務(wù)×

售前咨詢(xún) 售前咨詢(xún)
 
售前咨詢(xún) 售前咨詢(xún)
 
售前咨詢(xún) 售前咨詢(xún)
 
售前咨詢(xún) 售前咨詢(xún)
 
售前咨詢(xún) 售前咨詢(xún)
 
售后服務(wù) 售后服務(wù)
 
備案專(zhuān)線 備案專(zhuān)線
 
售后服務(wù) 售后服務(wù)
 
×