I want to observe let's say the bounds on the view of the viewController
[self.view addObserver:self forKeyPath:@"bounds" options:0 context:nil];
but how to unregister it in dealloc, when the self.view is already nil?
Note, that this question is not a duplicate "KVO and ARC how to removeObserver" as the answer doesn't handle this problem