我正在使用MKMapView构建地图应用程序,而我似乎无法在我的MKAnnotationView子视图中进行交互。
我有一个UIView类作为MKAnnotationView的主要子视图,在那里我有另一个子视图,一个UIButton,像这样:
let button = UIButton(type: .infoLight)
button.frame = CGRect(x: 0, y: 0, width: 30, height: 30)
button.addTarget(self, action: #selector(self.buttonTapped(sender:)), for: UIControlEvents.touchUpInside)
//self.bringSubview(toFront: button)
//button.isUserInteractionEnabled = true
self.addSubview(button)
(评论的行似乎没有帮助)
然后该类中的tapped函数如下所示:
func buttonTapped(sender: UIButton!) {
print("button tapped:", sender)
}
知道为什么buttonTapped()方法不会触发?
答案 0 :(得分:0)
我认为当mapkit将您的按钮添加到地图时,它会对其进行栅格化并将其添加为视图。所以'按钮'不再响应触摸事件。
您可以使用tapGestureRecognizer实现此功能。
当mapkit在以下函数中请求查看时。
func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView?
使用添加了点按手势的Uiview。