MKMapView 如何让地图的anotation的callout自动显示

我是这么来实现的.

首先在viewWillAppear  方法中定义了一个

 

[self performSelector:@selector(showCallout) withObject:nil afterDelay:1.0];

 

让方法showCallout在1.0秒钟后被调用.

 

- (void)showCallout {
    [mapView selectAnnotation:attackedAnnotation animated:YES];
}

 

上面黄色的部分的方法是官方api中的方法.

 

 

你可能感兴趣的:(MapView)