Malloc
Malloc

Reputation: 16276

catching the zoom out event

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

Answers (1)

Anomie
Anomie

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

Related Questions