我的核心数据模型中有一个整数数组。它被设置为可变形的。
我从服务器返回的 JSON 为我提供了以下格式的数字列表:
{ "numbers": [10, 3, 2], "name": "John Smith" }
我配置我的对象映射如下:
[dataMapping mapKeyPath:@"numbers" toAttribute:@"numberList"];
[dataMapping mapKeyPath:@"name" toAttribute:@"fullName"];
fullName 没有问题,它是一个字符串。
但是,加载对象后 numberList 仍然为空(所有常规参数都加载正常)。我在网上四处张望,但不知道要寻找什么。
有任何想法吗?