I am registering an observer on a bunch of tableview controllers dynamically so I need to remove previous observers if they were registered on the same object. To do this I need to check if the observer exists on the object.
Is this possible? I know with NSNotification you can use the NSNotification center singleton but is this the same for KVO?