Reputation: 16276
Can anybody tell me how to catch the zoom out event. My purpose is that i want to disable the auto zoom in when the user zoom out
Upvotes: 0
Views: 374
Reputation: 94794
The only documented methods related to this are mapView:regionWillChangeAnimated:
and mapView:regionDidChangeAnimated:
on MKMapViewDelegate, which would be called on zoom out as well as zoom in and scroll.
Upvotes: 2