Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 RestKit 解析 GitHub API,特别是存储库的提交。 您可以在他们的文档中看到嵌套属性,例如“提交”哈希。但是,属性是主要对象的一部分,我不想为此添加新模型和关系。
如何在此处向提交消息添加映射?
这取决于您尝试获取的核心数据模型的类型,但据我了解,也许您可以展平 API 资源并将其设置message为对象的直接属性commit。
message
commit
像这样的东西:
[commitMapping mapKeyPath:@"commit.message" toAttribute:@"commitMessage"];