I have a tableview with custom cells that I would like to update whenever I need too. For example, each cell has an extra UILabel on the right side of the cell that contains a value of a setting. When you tap that cell, it loads up a new view where you can change the value of that setting. When the modified setting is save by pressing the save button on this new view, and the navigation controller takes you back to the original (top) view, I want the original tableView to update the cell with the newly modified value.
I think becuase the tableView code tries to save the cells to prevent them from being recreated, saving time and memory I assume, I think this is causing the cell to never update. Is there a method I can call to tell all cells or specific cells to update their Text\UILabels with the newly updated value?
I think becuase the tableView code tries to save the cells to prevent them from being recreated, saving time and memory I assume, I think this is causing the cell to never update. Is there a method I can call to tell all cells or specific cells to update their Text\UILabels with the newly updated value?