Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: MKMapView - 将地图滚动限制为方形覆盖
有没有办法限制地图的滚动只在特定国家(地区)的边界内滚动?先感谢您
该MKMapViewDelegate协议有一个-mapView:regionWillChangeAnimated:可以在地图委托中实现的方法。不幸的是,它不是...ShouldChangeAnimated:,因此您无法返回NO以阻止更改,但是您可以做的是在用户滚动超出您要显示的区域时自己设置地图区域。
MKMapViewDelegate
-mapView:regionWillChangeAnimated:
...ShouldChangeAnimated:
NO