gpt4 book ai didi

cocoa - 自动调整 NSTableView 的列大小以适应内容?

转载 作者:行者123 更新时间:2023-12-03 17:22:30 25 4
gpt4 key购买 nike

如何使 NSTableView 自动调整其列的大小,以便每列中的所有内容都可见而不被截断?

最佳答案

试试这个:-

CGFloat oldWidth =0.0;
for (i=0; i<[[arrCont arrangedObjects]count]; i++)
{
for (j=0;j<[[tableView tableColumns]count]; j++)
{
NSCell *dataCell=[tableView preparedCellAtColumn:j row:i];
CGFloat newWidth=[dataCell cellSize].width;
if (newWidth > oldWidth)
{
oldWidth=newWidth;
}
[[[tableView tableColumns] objectAtIndex:j] setWidth:newWidth];
}
}

关于cocoa - 自动调整 NSTableView 的列大小以适应内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18858208/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com