0

I am trying to insert value in a particular cell only, for example how to insert value in (2,3) 2nd row and 3rd column. i know how to insert value in a table but i don't know how to insert value in selected cell.

ADJ
  • 1,531
  • 1
  • 11
  • 15

1 Answers1

0
– tableView:setObjectValue:forTableColumn:row:

The intersection of column and row gives you the cell.

You need to update the datasource in this datasource method.

Anoop Vaidya
  • 46,283
  • 15
  • 111
  • 140