裏面我有這兩個類:NSCollectionView另一NSCollectionView
@interface Father : NSObject
{
NSString* name;
NSArray* listChildren;
}
@property (copy, readwrite) NSString* name;
@property (copy, readwrite) NSArray* listChildren;
@end
@interface Child : NSObject
{
NSString* nameChild;
NSImage* picture;
}
@property (copy, readwrite) NSString* nameChild;
@property (copy, readwrite) NSImage* picture;
@end
我試圖讓充滿Father
項NSCollectionView
,併爲每個父親項目的View
我將有一個名稱標識,另一個NSCollectionView
填充與(父親)representedObject.listChildren
項目。
我已經成功地創建了父親NSCollectionViewItem
的View
,使事情變得更容易外部NIB文件,但我不能給孩子CollectionView
綁定到representedObject.listChildren
財產。實際上,在IB中綁定沒有問題,並且在運行時系統實際上調用了屬性(我已經添加了執行和一個NSLog調用以確保該屬性被調用)。看來CollectionView
的內核不會加載在我的NSArray
*屬性中找到的項目嗎?
這讓我發瘋,對發生了什麼事情有任何想法? 請幫助!
可能重複:HTTP:/ /stackoverflow.com/questions/2204147/debugging-nested-nscollectionviews 那裏沒有答案。哎呀! – andyvn22 2010-08-20 20:48:41
這些問題的任何更新或答案? – Prasanth 2014-10-05 19:36:21