Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
@JackHumphries I am not want to set cell height first time. After the cell is shown, I want change the cell's height again. It's the same way? – ZhouQi Dec 28 '12 at 6:10
Yes, it is the same way. When you are ready to change the cell's height, simply call [self.tableView reloadData] or [self.tableView reloadRowsAtIndexPaths...] and pass the correct value for the height in heightForRowAtIndexPath. – Jack Humphries Dec 28 '12 at 6:25
@JackHumphries reload will clear content that already in the cell. Is that any method can change its height but not reinit it? – ZhouQi Dec 28 '12 at 7:23

marked as duplicate by Jack Humphries, 0x7fffffff, progrmr, rmaddy, Janak Nirmal Dec 28 '12 at 6:47

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.

1 Answer

You can change the height of cells in tableview:hightOfRowAtIndexPath:.

For eg:

- (CGFloat)tableView:(UITableView *)aTableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    CGFloat retVal =0.0f;

    if(indexPath.section==//the section you want )
    {
        if(indexPath.row==//the row you want)
        {
            retVal=10.0f;//the height you want.
        }
        else
            retVal=50.0f;
    }
    else 
        retVal=50.0f;

    return retVal;
}
share|improve this answer
I am not want to set cell height first time. After the cell is shown, I want change the cell's height again. It's the same way? @Rob – ZhouQi Dec 28 '12 at 6:17
@ZhouQi You would (a) have your heightForRowAtIndexPath check some ivar for whether it should use the standard height or whether it should use the expanded height; and (b) once you set that ivar, you'd just call reloadRowsAtIndexPaths – Rob Dec 28 '12 at 6:47
@Rob reload rows will clear the cell 's content. – ZhouQi Dec 28 '12 at 7:25
@Rob my cell has a textview, and I want when input some content into textview, the textview will become more than one line. so the cell 's height need become big too. – ZhouQi Dec 28 '12 at 7:27
You just need to set a BOOL variable.If you need the height changed just set the BOOL and reloadRowsAtIndexPath to change the height.If you want to change the height according to the textview text you can set the BOOL in textView's delegate method (for e.g.: textViewDidChange:) and call reloadRows.. in that when you want to increase the height. – Divya Dec 28 '12 at 8:18
show 4 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.