---
title: "tableView(_:sizeToFitWidthOfColumn:)"
framework: appkit
role: symbol
role_heading: Instance Method
path: "appkit/nstableviewdelegate/tableview(_:sizetofitwidthofcolumn:)"
---

# tableView(_:sizeToFitWidthOfColumn:)

Asks the delegate to provide custom sizing behavior when a column’s resize divider is double clicked.

## Declaration

```swift
@MainActor optional func tableView(_ tableView: NSTableView, sizeToFitWidthOfColumn column: Int) -> CGFloat
```

## Parameters

- `tableView`: The table view that sent the message.
- `column`: The index of the column.

## Return Value

Return Value The width of the specified column.

## Discussion

Discussion By default, NSTableView iterates every row in the table, accesses a cell via preparedCell(atColumn:row:), and requests the cellSize to find the appropriate largest width to use. For accurate results and performance, it’s recommended that this method is implemented when using large tables. By default, large tables use a Monte Carlo simulation instead of iterating every row.

## See Also

### Setting row and column size

- [tableView(_:heightOfRow:)](appkit/nstableviewdelegate/tableview(_:heightofrow:).md)
