Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I has a bug where my application crashed "EXC_BAD_ACCESS" when I hit the back key on my navigation bar and the view unloaded that had a MapKit (mapView) and used the Location Manager. Tried for days to fix the bug and finally came up with a fix for anyone that comes across this problem:

Add this code to your dealloc

- (void)dealloc {
    mapView.delegate = nil;
    locationManager.delegate = nil;

    [mapView release];
    [locationManager release];
}
share|improve this question
Thanks, man! The weird thing is that you can't reproduce it in the simulator. – Johannes Fahrenkrug Jul 20 '10 at 12:50
Please provide more implementation details. It looks like some obj. is already released. Btw, it's good habit to nil the delegate in dealloc. – kompozer May 29 '11 at 6:55
Without seeing crash logs can't really tell. But looks like you are releasing something twice. try adding NSZombieEnabled, this will tell you if you are trying to access something in memory that has already been released. – CW0007007 Jan 31 '12 at 13:40

1 Answer

I had this one too, :) And, yes, this fix is actually a proper fix;

- (void)dealloc {
  mapView.delegate = nil;
  locationManager.delegate = nil;

  [mapView release];
  [locationManager release];
}

What happens behind the scenes is this:

  1. You hit the backkey. This unloads and in consequence releases the controller which holds the mapView. As there has been quite likely only a single reference to the controller it will be dealloc'ed then.

  2. The locationManager, however, is quite likely still referenced somewhere in the inner workings of geopositioning.

  3. If the locationManager and/or mapView now send out a notification to their respective delegate, they are following an invalid pointer. Which will result in a EXC_BAD_ACCESS exception.

Yes: nilling delegates that point to self is always a good idea. I justed wished Apple would add some automagic there.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.