In my NSTableView, when adding columns I call setDataCell: on them in order to use my NSTextFieldCell subclass. But whenever I do this (even if I setDataCell:NSTextFieldCell with no subclass at all!), the cells insist on truncating their strings so that only whole words are displayed. Like in the normal NSTableView the string "abc def" would be displayed "abc d" and half an e, now it would be "abc ", with no indication that it's a partial string. I also have an NSFormatter in action on these cells, to truncate with a "...", and this can be seen only in the odd situation where my truncated string is still short enough not to trigger this other mysterious formatting. Any idea how I can get my NSTableColumn's cells to behave like the NSTableView default when I set a specific data cell for them?
thanks