I\'m trying to implement the new view-based OutlineView as a source list in my Mac app. I can\'t get values to display, though, so I made a small test app from the Core Data app
Wow, it's like me from two weeks ago is asking this question.
Anyway, if you're anything like me, the problem is that,
for view-based NSOutlineViews
, you need to implement the
- (NSView *)outlineView:(NSOutlineView *)outlineView
viewForTableColumn:(NSTableColumn *)tableColumn
item:(id)item;
delegate method and return the NSTableCellView
you set up,
or they'll just give you a blank line. The easiest way to do this is to just call
[outlineView makeViewWithIdentifier:@"MyCell" owner:self]
replacing MyCell
with whatever you typed in as the "User Interface Item Identifier"
in the Identity Inspector for your NSTableCellView
.
- (NSView *)outlineView:(NSOutlineView *)outlineView viewForTableColumn:(NSTableColumn *)tableColumn item:(id)item {
return [outlineView makeViewWithIdentifier:@"MyCell" owner:self];
}
func outlineView(_ outlineView: NSOutlineView, viewFor tableColumn: NSTableColumn?, item: Any) -> NSView? {
return outlineView.makeView(withIdentifier: NSUserInterfaceItemIdentifier("MyCell"), owner: self)
}
Actually, you don't need to set the delegate. Here is how I got it working (tested with NSTreeController
, but should work with NSArrayController
as well):
arrangedObjects
(without Model Key Path)objectValue.yourCustomValue
TableCellView
. Make sure both identifiers are identical. Repeat that for the remaining columns with different identifiers.Screenshot: Bindings for View Based NSOutlineView