第一次点击跳转页面进入下个页面,点击状态为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];
}
本文标题:iOS 大头针点击跳转页面 返回第二次点击无响应
本文链接:https://www.haomeiwen.com/subject/fgxfsxtx.html
网友评论