Subclassing MKOVerlay View- canDrawMapRect not called
问题 I am attempting to subclass MKOverlayView to create a custom overlay. I understand that in order to do this, one must override the following two methods - (void)drawMapRect:(MKMapRect)mapRect zoomScale:(MKZoomScale)zoomScale inContext:(CGContextRef)context; - (BOOL)canDrawMapRect:(MKMapRect)mapRect zoomScale:(MKZoomScale)zoomScale; My question arrises from the latter method. For some reason, when I override it in my MKOverlayView subclass, it does not get called. According to documentation,