Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NSTableView with custom cells

it seems I've been searching for a long time and haven't found a great, easy, answer to my problem.

I'm using XCode with Cocoa/ObjC and am trying to create an NSTableView which will load values from an NSDictionary/Array into different sections of a cell.

For example, I'm trying to get an NSImage, NSTextField and other items into a custom cell (along with a background image). However, I can't find a simple answer to how to create this..

I've been coding for the iPhone with UITableViews for a while now and can't seem to find a similar way with NSTableViews.

Any help would be really great!

Thanks

Dominic

like image 666
Domness Avatar asked May 26 '09 11:05

Domness


3 Answers

NSTableView has -tableView:dataCellForTableColumn:row:. Just create your NSCell subclass in your delegate and return it if you need customization for that row. If you're just using your custom cell for every row in the table view, you can also just use IB to set the custom cell class.

The table view will copy the cell as needed, so you can keep the cell as an instance variable if it would be more efficient. The data source methods or bindings on the table view work as they normally would, only you'll return your populated dictionary instead of a single string or number. You could also pass a custom model object directly to the tableview too, although you'll have to make it copyable, or override setObjectValue: in your cell to wrap it in an NSValue.

If it's subclassing NSCell that's giving you trouble, that can be a bit of a learning experience. Start with -drawWithFrame:inView: to draw all your custom objects, and go from there as you need more functionality.

like image 99
Marc Charbonneau Avatar answered Nov 08 '22 00:11

Marc Charbonneau


Watch the WWDC 2011 video "View Based NSTableView Basic to Advanced" (Session 120)

https://developer.apple.com/videos/wwdc/2011/

This applies to Lion (10.7) and higher.

like image 23
Paul Solt Avatar answered Nov 08 '22 00:11

Paul Solt


A cell can only hold one object value at a time. Make a model object with the image and string/attributed string as properties, and populate the table view with that.

Also, a text field is a view. Your model should know nothing of its presentation—that's your views' job.

like image 3
Peter Hosey Avatar answered Nov 07 '22 22:11

Peter Hosey