I've noticed that my app leaks memory, but if I take the MKMapView
out the memory problem goes away.
To test the theory, I made a dead simple project that has a view that pushes a view with a MKMapView
in it and pops and pushes. Nothing more. No code in the view controllers, everthing done via storyboard.
If I go back and forth to the map view, it starts about 3MB after doing pushing and popping the view with the map in it this about 15 times the memory is around 230MB.
Anyone else seen this? Seems like a pretty big bug. Is there a different way to use MKMapView
that will prevent it from leaking so much?
I had faced the same issue and (thanks to Stackoverflow) fixed it by changing MKMapType
in viewWillDisappear
and deallocating/setting its delegate to nil.As it still sends message to delegates.
This is documented in MKMapViewDelegate Protocol Reference:
Before releasing an MKMapView object for which you have set a delegate, remember to set that object’s delegate property to nil. One place you can do this is in the dealloc method where you dispose of the map view
.
-(void)viewWillDisappear:(BOOL)animated{
[super viewWillDisappear:animated];
[self applyMapViewMemoryFix];
}
- (void)applyMapViewMemoryFix{
switch (self.mkMapView.mapType) {
case MKMapTypeHybrid:
{
self.mkMapView.mapType = MKMapTypeStandard;
}
break;
case MKMapTypeStandard:
{
self.mkMapView.mapType = MKMapTypeHybrid;
}
break;
default:
break;
}
self.mkMapView.showsUserLocation = NO;
self.mkMapView.delegate = nil;
[self.mkMapView removeFromSuperview];
self.mkMapView = nil;
}
hope this helps