Does iPhone key-value-coding have a way to test whether a class will accept a given key?
That is, without implementing the valueForUndefinedKey: or setValue: forUndefinedKey: method of the target class, I want to be able to do something like this:
if ([targetObject knowsAboutKey: key]) {
[targetObject setValue: value forKey: key];
}