1网络加载json的时候,要在模型的实现文件里写:
- (void)setValue:(id)value forKey:(NSString *)key
{
}
2本地加载json的时候,要在模型的实现文件里写:
- (void)setValue:(nullable id)value forUndefinedKey:(NSString *)key
{
}
2023-02-24 21:52:20
1网络加载json的时候,要在模型的实现文件里写:
- (void)setValue:(id)value forKey:(NSString *)key
{
}
2本地加载json的时候,要在模型的实现文件里写:
- (void)setValue:(nullable id)value forUndefinedKey:(NSString *)key
{
}