- KVC是KeyValueCoding的简称,它是一种可以直接通过字符串的名字(key)来访问类属性的机制。而不是通过调用Setter、Getter方法访问。
- 获取值
-
- (id)valueForKey:(NSString *)key; - (id)valueForKeyPath:(NSString *)keyPath; - (id)valueForUndefinedKey:(NSString *)key;
- 设置值
-
- (void)setValue:(id)value forKey:(NSString *)key; - (void)setValue:(id)value forKeyPath:(NSString *)keyPath; - (void)setValue:(id)value forUndefinedKey:(NSString *)key;
时间: 2024-10-07 20:50:29