KVC KVO

KVC 提供了如下接口:

  1. - (id)valueForKey:(NSString *)key;  

  2. - (void)setValue:(id)value forKey:(NSString *)key;  

  3. - (id)valueForKeyPath:(NSString *)keyPath;  

  4. - (void)setValue:(id)value forKeyPath:(NSString *)keyPath;  



你可能感兴趣的:(KVC KVO)