如何使用谓词访问另一个表的数据?

时间:2013-06-17 21:20:55

标签: ios core-data nspredicate

我有一个iPad应用程序(XCode4.6,iOS 6.2,ARC和Storyboards)。我有一个CoreData商店,如下所示:

enter image description here

我需要在给定AppointmentsInfo表中的键的情况下访问这两个表。核心数据不使用连接,所以我在想这样的事情:

"aApptKey = %@ and CLientInfo.ClientKey = %@"

工作谓词是什么样的?

1 个答案:

答案 0 :(得分:2)

这将是这样的:

NSPredicate *predicate = [NSPredicate predicateWithFormat:@"aApptKey == %@ && client.aClientKey == %@", obj1, obj2];