Re: NSOutlineView: what does this even mean?

2014-05-22 Thread Graham Cox
On 22 May 2014, at 2:20 pm, Kyle Sluder k...@ksluder.com wrote: On May 22, 2014, at 12:15 AM, Graham Cox graham@bigpond.com wrote: So I want to use a custom subclass of NSTableRowView so I can use an in-house UI highlighting style. It's far from obvious how to do this, even though

Re: NSOutlineView: what does this even mean?

2014-05-22 Thread Kyle Sluder
On Thu, May 22, 2014, at 07:00 PM, Graham Cox wrote: I still have a problem doing this though. In the video, a custom table row view is shown as a subview of the table, and sure enough, the identifier and class can be set there. But when I try it, there is no such view available, neither

Re: NSOutlineView: what does this even mean?

2014-05-22 Thread Graham Cox
On 23 May 2014, at 1:09 pm, Kyle Sluder k...@ksluder.com wrote: Did you remember to set your table view to View Based mode first? I just successfully dropped a Custom View _below_ the existing text cell view in a table view in Xcode 5.1.1. Yep, it's set to view-based. Strange, I just can't

NSOutlineView: what does this even mean?

2014-05-21 Thread Graham Cox
According to the documentation: xcdoc://?url=developer.apple.com/library/mac/documentation/Cocoa/Reference/ApplicationKit/Classes/NSTableView_Class/Reference/Reference.html# Specifying a Custom Row View In a NIB The NSTableViewRowViewKey is the key that NSView-based table view instances use to

Re: NSOutlineView: what does this even mean?

2014-05-21 Thread Kyle Sluder
On May 22, 2014, at 12:15 AM, Graham Cox graham@bigpond.com wrote: So I want to use a custom subclass of NSTableRowView so I can use an in-house UI highlighting style. It's far from obvious how to do this, even though other documentation states that this is the 'correct' approach to