Create a custom cell in a NSTableView
In my app I'm trying to create a custom cell like the follow: I know how to do that with iOS and I guess it should be quite the same by using OS X. So in interface builder I designed the table view but I can figure how to create a custom cell. I tried to insert in the .xib in which I designed the table view the custom component I need (2 NSTextField and 2 NSImageView ), then I create a class "CustomCell.m" and "CustomCell.h" as subclass of NSTableCellView , so I tried to connect my component to this class, but I can't add it... Why I can't connect the component to "CustomCell" class? What's