我需要在运行时绑定NSArrayController's
内容集。内容集是一个中的“多个”部分:两个NSManagedObject
类之间的许多关系,其中一部分在运行时是已知的。
使用的方法是(我认为):
[[self referencesController] bind: <content set> toObject: [self representedObject] withKeyPath: @"references" options: nil]
上述[self referencesController]
是NSArrayController
,[self representedObject]
是关系的1部分,@"references"
是关系的很多部分。
我的问题是我要对NSArrayController的哪些属性进行绑定,因此需要为内容集输入什么内容?
答案 0 :(得分:0)
我认为你要找的是@"contentArray"
。