在我的核心數據管理對象模型中,我有一個實體Foo,它與實體Baz命名爲baz的多對多關係(具有對多個逆)。 Baz有一個名爲「tag」的字符串屬性。當我使用[NSPredicateRowEditorTemplate templatesWithAttributeKeyPaths:[NSArray arrayWithObject:@"baz.tag"] inEntityDescription:FooDescription]
爲NSPredicateEditor創建行編輯器時,結果包含(如預期的)行模板,如爲多對多關鍵字自動生成謂詞行模板?
[Popup:baz.tag] [Popup:Contains | is | is not | ...] TextField]
當我從彈出窗口中選擇「Contains」時,帶謂詞的查詢按預期工作。如果我選擇其他彈出窗口(例如「is」),則會出現以下錯誤:「此處不允許使用多對多密鑰」。我可以使用[NSPredicateRowEditorTemplate templatesWithAttributeKeyPaths:inEntityDescription:]
還是必須手動構建行編輯器?