I've set up KVO notification to watch some properties of a UIWebView like so
[webView addObserver:self
forKeyPath:@"canGoBack"
options:NSKeyValueObservingOptionNew
context:NULL];
and have
- (void)observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
change:(NSDictionary *)change
context:(void *)context
but it never gets called. Am I missing something or is UIWebView just not observable?