Matt S.
Matt S.

Reputation: 13753

Multiple Lines in NSTextFieldCell

How can I have multiple lines in my NSTextFieldCell in my NSTableView? By this I mean have multiple lines of data:

Ex

Stack Overflow www.stackoverflow.com

turns into this:

Stack Overflow

www.stackoverflow.com

Upvotes: 1

Views: 1152

Answers (1)

JWWalker
JWWalker

Reputation: 22707

Parts of the solution would involve telling the cell that the text can wrap, and telling the table that the row heights vary. Getting the details right seems to be a tricky problem, or at least it was in 2005 when this discussion was written.

Upvotes: 2

Related Questions