There is a class ViewController, inherited from NSViewController, NSTableViewDataSource, NSTableViewDelegate. Each of the cells can its size. Implemented features such as
numberOfRowsInTableView(tableView: NSTableView) tableView(tableView: NSTableView, shouldSelectRow row: Int) tableView(tableView: NSTableView, heightOfRow row: Int) tableView(tableView: NSTableView, viewForTableColumn tableColumn: NSTableColumn?, row: Int) tableViewColumnDidResize(notification: NSNotification) Is it possible, when resizing a control (calling the tableViewColumnDidResize function), to forcibly recalculate the sizes of each of the cells? A possible solution, TableView.reloadData() not suitable for other brakes, because there is a re-request information.