MKAnnotationView

大头针(相当于TableView的model)(MKAnnotation)

在iOS开发中经常会标记某个位置,需要使用地图标注,也就是大家俗称的“大头针”。只要一个NSObject类实现MKAnnotation协议就可以作为一个大头针,通常会重写协议中coordinate(标记位置)、title(标题)、subtitle(子标题)三个属性,然后在程序中创建大头针对象并调用addAnnotation:方法添加大头针即可

#import 
#import 
@interface MyAnnotation : NSObject
@property (nonatomic) CLLocationCoordinate2D coordinate;
@property (nonatomic,copy) NSString * title;
@property (nonatomic,copy) NSString * subtitle;
@end

设置大头针视图(TableView的cell)(MKAnnotationView)

在一些应用中系统默认的大头针样式可能无法满足实际的需求,此时就需要修改大头针视图默认样式。根据前面MapKit的代理方法不难发现- (MKAnnotationView *)mapView:(MKMapView * )mapView viewForAnnotation:(id )annotation;方法可以返回一个大头针视图,只要实现这个方法并在这个方法中定义一个大头针视图MKAnnotationView对象并设置相关属性就可以改变默认大头针的样式. (可以像cell一样自定义) 新建一个类继承自MKAnnotation,然后重写此方法 :

- (instancetype)initWithAnnotation:(nullable id )annotation reuseIdentifier:(nullable NSString *)reuseIdentifier

MKAnnotationView的常用属性

  • annotation 大头针模型信息,包括标题、子标题、地理位置。
  • image 大头针图片
  • canShowCallout 点击大头针是否显示标题、子标题内容等,
  • calloutOffset 点击大头针时弹出详情信息视图的偏移量
  • selected 是否被选中状态
  • leftCalloutAccessoryView 弹出详情左侧视图
#import "FistViewController.h"
#import 
#import "MyAnnotation.h"

@interface FistViewController ()
@end

@implementation FistViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor whiteColor];
    MKMapView * _mapView = [[MKMapView alloc] initWithFrame:CGRectMake(0, 0, 400, 400)];
    _mapView.mapType = MKMapTypeStandard;
    _mapView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;
    _mapView.delegate = self;
    CLLocationCoordinate2D location1=CLLocationCoordinate2DMake(39.95, 116.35);
    MyAnnotation *annotation1=[[MyAnnotation alloc]init];
    annotation1.title=@"CMJ Studio";
    annotation1.subtitle=@"Kenshin Cui's Studios";
    annotation1.coordinate=location1;
    [_mapView addAnnotation:annotation1];
    CLLocationCoordinate2D location2=CLLocationCoordinate2DMake(38.95, 116.35);
    MyAnnotation *annotation2=[[MyAnnotation alloc]init];
    annotation2.title=@" Studio";
    annotation2.subtitle=@"Kenshin Cui's Studios";
    annotation2.coordinate=location2;
    [_mapView addAnnotation:annotation2];
    [self.view addSubview:_mapView];
}

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id)annotation
{
     //由于当前位置的标注也是一个大头针,所以此时需要判断,此代理方法返回nil使用默认大头针视图
    if ([annotation isKindOfClass:[MyAnnotation class]]) {
        static NSString  * key1 = @"Annotation";
        MKAnnotationView * annotationView = [mapView dequeueReusableAnnotationViewWithIdentifier:key1];
        if (!annotationView) {
            annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:key1];
            annotationView.canShowCallout = true;              //允许交互点击
            annotationView.calloutOffset = CGPointMake(0, 0);  //定义详情视图偏移量
            annotationView.leftCalloutAccessoryView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@""]];
        }
        annotationView.annotation = annotation;
        annotationView.image = [UIImage imageNamed:@"勾选"];    //设置大头针视图的图片
        return annotationView;
    }else{
        return nil;
    }
}

你可能感兴趣的:(MKAnnotationView)