En mi subclase UIScrollView, estoy observando los cambios del marco:¿Qué pasa con este observeValueForKeyPath: ofObject: change: context: implementation?
[self addObserver:self forKeyPath:@"frame" options:0 context:NULL];
Mi observeValueForKeyPath:ofObject:change:context:
aplicación es el siguiente:
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
if (object == self && [keyPath isEqualToString:@"frame"]) {
[self adjustSizeAndScale];
}
if ([UIScrollView instancesRespondToSelector:@selector(observeValueForKeyPath:ofObject:change:context:)]) {
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context]; // Exception
}
}
pero me da una excepción con este código:
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '<WLImageScrollView: 0x733a440; baseClass = UIScrollView; frame = (0 0; 320 416); clipsToBounds = YES; layer = <CALayer: 0x7346500>; contentOffset: {0, 0}>: An -observeValueForKeyPath:ofObject:change:context: message was received but not handled.
Key path: frame
Observed object: <WLImageScrollView: 0x733a440; baseClass = UIScrollView; frame = (0 0; 320 416); clipsToBounds = YES; layer = <CALayer: 0x7346500>; contentOffset: {0, 0}>
Change: {
kind = 1;
}
Context: 0x0'
¿Significa que UIScrollView implementa observeValueForKeyPath:ofObject:change:context:
pero arroja la excepción anterior?
Si es así, ¿cómo puedo implementar correctamente observeValueForKeyPath:ofObject:change:context:
para que yo pueda manejar mis cambios interesados y darle a la superclase la oportunidad de manejar los cambios que le interesan?
El artículo se ha vinculado a está hablando de otra cosa: la superclase no implementa observeValueForKeyPath: ofObject: el cambio: contexto :. Pero aquí, como puede ver en el código, UIScrollView lo implementa, de lo contrario, no se llamará al supermétodo. – an0
Incluso si implementa el método, podría tener un código que detecte claves no observadas y arroje excepciones para ellas; por lo tanto, la excepción 'NSInternalInconsistency 'recibida pero no administrada', que es diferente del selector' NSInvalidArgumentException' 'no reconocido enviado a la instancia ". –
Eso es lo que estoy preguntando. Entonces, la implementación predeterminada de observeValueForKeyPath: ofObject: change: context: ¿en NSObject lanza una excepción?Si es así, no hay nada que podamos hacer para detectar si la superclase desea ser notificada de los cambios de valores clave, ¿no es así? – an0