我有一个iPad应用程序(XCode4.6,iOS 6.2,ARC和Storyboards)。我有一个CoreData商店,如下所示:
我需要在给定AppointmentsInfo表中的键的情况下访问这两个表。核心数据不使用连接,所以我在想这样的事情:
"aApptKey = %@ and CLientInfo.ClientKey = %@"
工作谓词是什么样的?
答案 0 :(得分:2)
这将是这样的:
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"aApptKey == %@ && client.aClientKey == %@", obj1, obj2];