第一次点击跳转页面进入下个页面,点击状态为Select,所以从页面返回第二次在次点击大头针 无响应。改变当前点你大头针为 deselect就可以了
- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view
{
NSLog(@"选中大头针");
[self.mapView deselectAnnotation:view.annotation animated:YES];
}
第一次点击跳转页面进入下个页面,点击状态为Select,所以从页面返回第二次在次点击大头针 无响应。改变当前点你大头针为 deselect就可以了
- (void)mapView:(MKMapView *)mapView didSelectAnnotationView:(MKAnnotationView *)view
{
NSLog(@"选中大头针");
[self.mapView deselectAnnotation:view.annotation animated:YES];
}