I have a key in my app delegate that I listen for changes using the following code:
[self addObserver:self forKeyPath:@"myKey" options:0 context:nil];
After some time though, the app delegate stops responding to changes to myKey
. Why does this happen?