1

我正在关注https://github.com/RestKit/RestKit/blob/master/Docs/Object%20Mapping.md上的 Restkit 教程,这非常好,因为 RestKit 是一个非常酷的框架 - 我认为。

只有一点我没有得到。在文档中有一行“文章”,但我看不到文章在哪里声明以及它来自哪里。

// Define the relationship mapping [article mapKeyPath:@"author"
toRelationship:@"author" withMapping:authorMapping];

有人能给黑暗带来光明吗?

这是如何处理嵌套的 1:n 关系的正确领域吗?

4

1 回答 1

1

该行应该是:

[articleMapping mapKeyPath:@"author" toRelationship:@"author" withMapping:authorMapping];

wiki上更新的文章有更正。

于 2011-09-24T20:25:54.030 回答