Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
I see nothing wrong with your code. Most likely MKMapView is keeping around a cache of objects that appears like a leak. I wouldn't lose any sleep over it unless it gets really out of hand, using up megabytes of RAM. UIWebView has similar issues. – EricS Jan 31 '12 at 7:21
@EricS, I'd have thought that. But if I keep push the button (or opening/closing a window in my app) there seems to be no limit to how many objects there ends up being. – Winston Ewert Jan 31 '12 at 15:42

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.