如何在MKAnnotationView图像上注册手势?

时间:2018-09-19 08:48:51

标签: ios iphone uikit mkmapview mkannotation

是否可以在MKAnnotationView的图像中注册手势?

我的注释视图基本上是这样的,它没有标题,没有字幕,只有自定义图像,并且我希望尽可能保持这种状态:

My current test MKAnnotationView

当我在图像内部点击或从屏幕底部显示TableView时,我想导航到其他ViewController。现在,我真的只需要查看如何在内部注册轻击手势,即可继续使用该功能。

干杯。

1 个答案:

答案 0 :(得分:1)

您可以使用didSelect方法。

例如

func mapView(_ mapView: MKMapView, didSelect view: MKAnnotationView) {
    // navigate to a different viewcontroller
    //   or show a TableView from the bottom of the screen
}