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.
我有:
AT <<-->> ST <<-->> CT <-->> D
我想获取与 D 相关的所有 AT 实体。
是否可以?如果是这样,我将如何获得它们?
谢谢
假设您有一个D名为的实例d,并且每个对象都有一个合理的命名关系,请尝试:
D
d
[d.ct.st valueForKeyPath:@"@distinctUnionOfObjects.at];
这将初始单一关系导航到CT,然后获取ST对象集,向每个对象询问其AT对象并生成结果的不同集合。
CT
ST
AT