NSTableView + NSTextFieldCell 动态行大小

发布于 2024-12-18 15:22:25 字数 227 浏览 3 评论 0原文

我想在表视图中显示一个长度为(最大)4000 个字符的字符串。我尝试过使用 NSAttributedString 来找出 NSTextFieldCell 的行高,但是当我插入 > 时,我总是有点不足。 4 行文字。

NSTextFieldCell 设置为使用 NSLineBreakByWrapping 进行换行。

除了 NSAttributedString 之外,我可以使用什么来获取我需要的高度?

I want to display a string inside a tableview that can be ( max ) 4000 characters long. I have tried using NSAttributedString to find out the row height for the NSTextFieldCell, but I always fall a bit short when I insert > 4 lines of text.

The NSTextFieldCell is set to using NSLineBreakByWrapping for its line breaks.

What next to NSAttributedString can I use to get the height I need?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空心↖ 2024-12-25 15:22:25
id cell = [[tableView tableColumnWithIdentifier:@"test"] dataCell];
    [(NSTextFieldCell *)cell setStringValue:[_messages objectAtIndex:row]];
    NSRect tallRect = NSMakeRect(0, 0, [tableView frame].size.width, CGFLOAT_MAX);
    return [cell cellSizeForBounds:tallRect].height;
id cell = [[tableView tableColumnWithIdentifier:@"test"] dataCell];
    [(NSTextFieldCell *)cell setStringValue:[_messages objectAtIndex:row]];
    NSRect tallRect = NSMakeRect(0, 0, [tableView frame].size.width, CGFLOAT_MAX);
    return [cell cellSizeForBounds:tallRect].height;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文