After I've added a cell to a section and it's being displayed I need to change the text.
I can do that using:
cell.textLabel.text=@"new text"
but the cell doesn't change the size of the label when I do so I get the dreaded three dots at the end of the text.
What's the 'accepted' way to change the text of the cell so the label size is re-calculated?
PS. I should mention that the cell is a plain, old SCTableViewCell which I use only to display text so I can intercept its index at tableViewModel:idSelectRowAtIndexPath: and then go of and carry out an action.