映射MKAnnotationView自定义

时间:2011-08-29 12:07:05

标签: iphone objective-c map

自定义注释视图,就像具有大量详细信息的yelp应用程序一样。 Yelp

是否有一个tuiitorial来自定义注释视图,如屏幕截图中的那个?

请帮忙。

2 个答案:

答案 0 :(得分:0)

试试这段代码:

- (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>) annotation
{
    MKPinAnnotationView *annView=[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"currentloc"];
    annView.pinColor = MKPinAnnotationColorPurple;
    annView.animatesDrop=TRUE;
    annView.canShowCallout = YES;
    annView.calloutOffset = CGPointMake(-5, 5);

    [rightButton setImage:[UIImage imageNamed:@"demo_img.jpg"] forState:UIControlStateNormal];
    annView.leftCalloutAccessoryView=rightButton;//add image on mapView
    return annView;
}

答案 1 :(得分:-1)

最近,我不得不使用MKMapView使用自定义标注(注释)开发应用。如果你想对它进行大量的自定义,你将无法绕过MKAnnotationView的子类。

最有帮助的是那些教程:

简介教程http://mithin.in/2009/06/22/using-iphone-sdk-mapkit-framework-a-tutorial

第1部分http://blog.asolutions.com/2010/09/building-custom-map-annotation-callouts-part-1/

第2部分http://blog.asolutions.com/2010/09/building-custom-map-annotation-callouts-part-2/(同时处理标注内的按钮)