I am getting an error in my app that I have no idea of how to figure out, has anyone seen this before:
# Binary Image Name Address Symbol
0 RepZio 0x002bd
Make sure you remove all notification observers before freeing them. This problem occurs when an observer is freed and notification center has still a pointer to that object and tries to notify it. Check that all addObserver have the corresponding removeObserver calls.
I know it's old question, but maybe I will help to someone.
In my case the same crash occurred when NSTextField
in NSTableViewCell
was in editing mode and user tried to select value from combobox outside of tableView without finishing editing. And the same CFNOTIFICATIONCENTER_...
crash was on line [tableView reloadData]
.
So, my way to resolve crash was to put [self.window makeFirstResponder:nil]
before reloading the table.