我正在ios中实现地图的自定义注释。我添加了一个按钮来显示位置的详细信息。但是IBAction在我的自定义视图中不起作用,因为MapView覆盖了我的自定义视图。有没有办法在视图下触发IBAction。 Click to see the image
-(MGLAnnotationView *)mapView:(MGLMapView *)mapView viewForAnnotation:(id<MGLAnnotation>)annotation {
[self.vwCustomAnnotation.superview bringSubviewToFront:self.vwCustomAnnotation];
self.vwCustomAnnotation.centerOffset = CGVectorMake(0, -self.vwCustomAnnotation.frame.size.height/2);
return self.vwCustomAnnotation;
}