Possible Duplicate:
Define height of one specific table cell
How can change one cell 's height in tableview? I want to changed one cell 's height in tableview, not init in first time, but also the cell has shown.
How can change one cell 's height in tableview? I want to changed one cell 's height in tableview, not init in first time, but also the cell has shown. |
||||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You can change the height of cells in tableview:hightOfRowAtIndexPath:. For eg:
|
|||||||||||
|
[self.tableView reloadData]or[self.tableView reloadRowsAtIndexPaths...]and pass the correct value for the height inheightForRowAtIndexPath. – Jack Humphries Dec 28 '12 at 6:25