Re: KVO and the observeValueForKeyPath bottleneck
Re: KVO and the observeValueForKeyPath bottleneck
- Subject: Re: KVO and the observeValueForKeyPath bottleneck
- From: Matt Neuburg <email@hidden>
- Date: Mon, 17 Jul 2006 10:49:37 -0700
- Thread-topic: KVO and the observeValueForKeyPath bottleneck
On Mon, 17 Jul 2006 09:09:04 -0700, Chris Kane <email@hidden> said:
>On Jul 17, 2006, at 7:38 AM, Matt Neuburg wrote:
>
>> On or about 7/17/06 3:38 AM, thus spake "Jakob Olesen"
>> <email@hidden>:
>>
>>> - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)
>>> object change:(NSDictionary *)change context:(void *)context
>>> {
>>> if ([self respondsToSelector:(SEL)context])
>>> [self performSelector:(SEL)context withObject:change];
>>> }
>>
>> By an incredible coincidence, yesterday (before this reponse
>> arrived at my
>> desk), after considering all the responses I'd gotten, I decided
>> upon an
>> approach and implemented it in my app, and it was word for word,
>> letter for
>> letter identical with this. m.
>
>
>I'm just curious ... with the trivial approach above, and the other
>ones involving the context being a keypath and so on ... has anyone
>considered what will happen if a superclass or subclass (of whatever
>class that is) is also doing KVO (on either same or different keys)
>of the same objects?
I hadn't, but I presume you wouldn't be asking the question unless the
answer were, "Something bad...?" :) I guess you're hinting that one needs to
call super.
Still, isn't it the strange implementation of KVO itself that gets us into
this bind? I mean, we can call super as part of the above implementation,
but aren't you really saying that we *always* need to call super, or KVO
will break down? The docs do not mention this (though, to be fair, the
example in KVOBasics.html does in fact call super). So this is a trap that
one was always prone to fall into, regardless of how observeValue... was
implemented.
The thing I'm really wondering is: Why was KVO implemented in this oddly
bottleneck-based way? There is terrific prior art, in the form of ordinary
notifications and the notification center (broadcaster-type architecture);
is there some technical reason why KVO doesn't use that?
m.
--
matt neuburg, phd = email@hidden, <http://www.tidbits.com/matt/>
A fool + a tool + an autorelease pool = cool!
AppleScript: the Definitive Guide - Second Edition!
<http://www.amazon.com/gp/product/0596102119>
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden