I've got a problem with memory leaks in my use of MKMapView. The MKMapView itself is deallocated, but some other objects like MKTileView, MKMapTileViewImp, and MKTiledLayer don't get destroyed and end up recreated and leaking.
I've reproduced the effect in a simple piece of code
@implementation ViewController
{
MKMapView * mapView;
}
- (void)leak:(id)sender
{
[mapView removeFromSuperview];
mapView = [[MKMapView alloc] initWithFrame: CGRectMake(20, 20, 20, 20)];
[self.view addSubview: mapView];
}
Everytime the button hooked up to leak is pushed, a new instance of MKTileView gets leaked.
I'm using ARC. I've looked at the other questions, but none seem to mention the same leaks that I'm seeing here.
Any ideas what my problem might be?