Search code examples
cocoanstableviewnstableviewcell

How can I keep track of selected row of a button in a table view cell?


Similar to this, How can I keep track of the index path of a button in a table view cell?

Do we have **any way we can select the row index of a **NSTableView**** when clicking on the button in the table cell.


Solution

  • Implement below delegate method in this you can identify which cell you have selected:-

    - (void)tableView:(NSTableView *)tableView
      willDisplayCell:(id)cell
       forTableColumn:(NSTableColumn *)tableColumn
                  row:(NSInteger)row