With IOS MapKit, how can one get callbacks during the dragging of the map itself? I know I can detect the begin and end of a drag, however I want to get callbacks during the drag. As such I'm after a stream of callbacks as the user begins to drag, then a break when they still have their finger down and have not released, then more callbacks as they keep dragging again.
Background: Want a trigger to update the centre lat/long of the current map as the user moves the map. Not sure how the rate of updates for my requirements would be controlled, however perhaps if there is a callback function I am not aware of it will be configurable?
Backup Question: If this is not possible out of the box with MKMapView then how would you best recommend I cover my requirements?