Contents

tableView(_:didAdd:forRow:)

Tells the delegate that a row view was added at the specified row.

Declaration

@MainActor optional func tableView(_ tableView: NSTableView, didAdd rowView: NSTableRowView, forRow row: Int)

Parameters

  • tableView:

    The table view that sent the message.

  • rowView:

    The row view.

  • row:

    The index of the row.

Discussion

At this point, the delegate can add extra views, or modify the properties of rowView.

See Also

Notification of row views being added or removed