I have a UITableView with static cells and I am trying to change the height of the cell when it meets a condition. The conditions are being met but the cell heights won't change.
The code I am using is
[self.tableView setRowHeight:10];
And
self.tableView rowHeight = 10;
Neither of these will change the row height of the cells Is there another way to change them?