When observing a value on an object using addObserver:forKeyPath:options:context:
, eventually you'll want to call removeObserver:forKeyPath:
on that object to clean up later. Before doing that though, is it possible to check if an object actually is observing that property?
I've tried to ensure in my code that an object is only having an observer removed when it needs to be, but there are some cases where it's possible that the observer may try to remove itself twice. I'm working to prevent this, but just in case, I've just been trying to figure out if there's a way to check first if my code actually is an observer of something.
I underestand this an objective-c question. But since lots of people use Swift/objective-c together, I thought I point out the advantage of the Swift4 new API over older versions of KVO:
If you do
addObserver
multiple times for KVO, then for each change you’ll get theobserveValue
as many as the current number of times you’ve added yourself as the observer.removeObserver
as many times as you added.The Swift4
observe
is far smarter and swiftier!invalidate
of thetoken
is enough.invalidat
ing it before beginning to observer or more times that that you’ve doneobserve
will not result in a crashSo to specifically answer your question, if you use the new Swift4 KVO, you don't need to care about it. Just call
invalidate
and you're good. But if you're using the older API then refer to Nikolai's answerNo. When dealing with KVO you should always have the following model in mind:
When establishing an observation you are responsible for removing that exact observation. An observation is identified by its context—therefore, the context has to be unique. When receiving notifications (and, in Lion, when removing the observer) you should always test for the context, not the path.
The best practice for handling observed objects is, to remove and establish the observation in the setter of the observed object:
When using KVO you have to make sure that both objects, observer and observee, are alive as long as the observation is in place.
When adding an observation you have to balance this with exactly one removal of the same observation. Don't assume, you're the only one using KVO. Framework classes might use KVO for their own purposes, so always check for the context in the callback.
One final issue I'd like to point out: The observed property has to be KVO compliant. You can't just observe anything.
Part of the NSKeyValueObserving protocol is this:
which should list the observers.
EDIT Useful for debugging only.