Skip navigation.
 
mlRe: Need a native guide through "Cannot remove an observer" woods
FROM : Keary Suska
DATE : Sat Apr 26 04:42:17 2008

on 4/25/08 6:49 PM, <email_removed> purportedly said:

> - (void) setEntry:(SVNWCEntry *)value
> {
> [self willChangeValueForKey:@"entry"];
>
> [value retain];
> [entry release];
> entry = value;
>
> [self didChangeValueForKey:@"entry"];
> }


If you haven't turned off automatic KVO notifications, the above is very
wrong, and could be the source of your problem.

Best,

Keary Suska
Esoteritech, Inc.
"Demystifying technology for your home or business"

Related mailsAuthorDate
mlNeed a native guide through "Cannot remove an observer" woods Jack Repenning Apr 26, 02:49
mlRe: Need a native guide through "Cannot remove an observer" woods Keary Suska Apr 26, 04:42
mlRe: Need a native guide through "Cannot remove an observer" woods Jack Repenning Apr 28, 20:49
mlRe: Need a native guide through "Cannot remove an observer" woods Keary Suska Apr 28, 23:15