我在UIPageViewController中有一个MKMapView,所以我想要两个触摸来拖动它,这样它就不会干扰分页。我在MKMapViewDeleate中尝试了这个,但它没有用(我无法拖动):
func mapView(_ mapView: MKMapView, regionWillChangeAnimated animated: Bool) {
mapView.isScrollEnabled = true
}
func mapView(_ mapView: MKMapView, regionDidChangeAnimated animated: Bool) {
mapView.isScrollEnabled = false
}
我怎样才能让它发挥作用?在MKMapView中处理地图的任何其他建议都非常受欢迎!