UIButton 作为 MKAnnotationView 的子视图不起作用

Posted

技术标签:

【中文标题】UIButton 作为 MKAnnotationView 的子视图不起作用【英文标题】:UIButton as subview of MKAnnotationView not working 【发布时间】:2017-05-02 15:12:06 【问题描述】:

我正在使用 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() 方法不会触发吗?

【问题讨论】:

【参考方案1】:

我认为当 mapkit 将您的按钮添加到地图时,它会将其栅格化并将其添加为视图。所以“按钮”不再响应触摸事件。

您可以使用 tapGestureRecognizer 来实现。

当 mapkit 在以下函数中请求查看时。 func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView?

使用添加了点击手势的 Uiview。

【讨论】:

以上是关于UIButton 作为 MKAnnotationView 的子视图不起作用的主要内容,如果未能解决你的问题,请参考以下文章

如果将 UIButton 作为子视图添加到 UIImageView,则单击 UIButton 不起作用

iOS 11 prefersLargeTitles 以 uibutton 作为标题

UIButton 作为子视图没有响应

使用 UITabbaritem 作为 UIButton

iOS - UIButton 作为 UIAlertController 上的子视图不触发事件

使用 UIView 作为 UIButton 的背景?