I have a problem: I have to know when map data are loaded to the Map view. I used the following method.
- (void)mapViewDidFinishLoadingMap:(MKMapView *)mapView;
{
//Some custom code if Map is loaded
}
Apple changed Map and now the method is called but map is still loading.
Do you have any ideas?
I've fixed it. At first, I created a function with my custom code
In the function mapViewDidFinishLoadingMap I set
And
It works for me.