是否可以在MKAnnotationView
的图像中注册手势?
我的注释视图基本上是这样的,它没有标题,没有字幕,只有自定义图像,并且我希望尽可能保持这种状态:
My current test MKAnnotationView
当我在图像内部点击或从屏幕底部显示TableView时,我想导航到其他ViewController。现在,我真的只需要查看如何在内部注册轻击手势,即可继续使用该功能。
干杯。
答案 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
}