KVC原理

发布时间 2023-10-31 16:56:52作者: 半个童钱

KVC

KVC的全称是Key-Value Coding ,俗称“键值编码”,可以tongue一个key来访问某个属性

常见的API

- (void)setValue:(id)Value forKeyPath:(NSString *)keyPath;
- (void)setValue:(id)Value forKey:(NSString *)key;
- (id)valueForkeyPath:(NSString *)keyPath;
- (id)valueForkey:(NSString *)key;

KVC原理

setValue:forKey: 原理

valueForKey: 原理