A UIViewController adds itself to the default center...

[[NSNotificationCenter defaultCenter]
 addObserver:self
 selector:@selector(editFood)
 name:@"editFood"
 object:nil];

Then a UITableView delegate NSObject posts a notification...

[[NSNotificationCenter defaultCenter]
 postNotificationName:@"editFood"
 object:self];

During run time it get a "EXC_BAD_ACCESS" exception.

Is the defaultCenter getting released somewhere? The same concept works when I post a notification to a UIViewController from a UIViewController, but that shouldn't matter, right?

link|improve this question
Where exactly is it crashing? – Till Apr 14 '11 at 19:47
feedback

1 Answer

One of your subscribers has been deallocated. Make sure to call [[NSNotificationCenter defaultCenter] removeObserver:self] in your dealloc (if not sooner).

link|improve this answer
Most likely correct - common mistake. +1 – Till Apr 14 '11 at 19:49
1  
Thanks, I just realized my mistake (After looking at this and researching for four hours). The object I was attempting to reference after the call had been released. The debugger just made it look like that's where the EXC_BAD_ACCESS exception was being thrown. – Paul Jordan Apr 14 '11 at 19:51
3  
@Paul: The Zombies instrument is really helpful in debugging this kind of problem. – Sven Apr 14 '11 at 19:59
@Sven Thanks, I appreciate it. I actually tried using that once, and couldn't figure out how. I added an environment variable in the project plist, but that wouldn't work. – Paul Jordan Apr 14 '11 at 20:44
feedback

Your Answer

 
or
required, but never shown

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