0
我想像MKPinAnnotationView Pin那樣以編程方式繪製Pin,而不是使用Pin圖像。如果有人有想法,請幫助我。在MKMapVIew中使用MKPinAnnotation View Pin的圖釘Pin
感謝
我想像MKPinAnnotationView Pin那樣以編程方式繪製Pin,而不是使用Pin圖像。如果有人有想法,請幫助我。在MKMapVIew中使用MKPinAnnotation View Pin的圖釘Pin
感謝
嘗試這種在
- (MKAnnotationView *)的MapView:(*的MKMapView)毫伏viewForAnnotation: (ID)註釋
if(annotation != mapView.userLocation)
{
static NSString *defaultPinID = @"PinId1";
pinView = (MKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:defaultPinID];
if (pinView == nil) pinView = [[[MKPinAnnotationView alloc]
initWithAnnotation:annotation reuseIdentifier:@"pin1"] autorelease];
//pinView= [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"pin1"];
//pinView.pinColor = MKPinAnnotationColorRed;
pinView.canShowCallout = YES;
pinView.animatesDrop = YES;
[pinView setImage:[UIImage imageNamed:@"user.png"]];
}