1

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

4

1 回答 1

0

尝试这个:-

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];
    }
}
于 2013-09-18T09:39:14.090 回答