自定义了MKAnnotation,但是点击annotation的时候还是出现了大头针:难道现在的自定义会自带这个默认icon?
if([annotation isKindOfClass:[LTtuangouDescAnnotation class]]){
static NSString *ID2 = @"tuangou_desc";
LTtuangouDescAnnotationView *annoView = (LTtuangouDescAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:ID2];
if (annotation == nil) {
annoView = [[LTtuangouDescAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:ID2];
}
annoView.annotation = annotation;
//设置图片
return annoView;
}
网友评论