Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using a UITableView in my iPhone app, and I have a list of people that belong to a group. I would like it so that when the user clicks on a particular person (thus selecting the cell), the cell grows in height to display several UI controls for editing the properties of that person.

Is this possible?

share|improve this question
12  
@Ted - Please accept the answer with 149 votes :) – Chris Nolet Mar 24 '12 at 5:02
@ChrisNolet he hasnt accepted yet:) – the march of the black queen May 25 '12 at 11:14
1  
Shouldn't there be a way for the community to vote for an answer after a certain amount of time? – RileyE Dec 20 '12 at 18:39
Ted's Dead (to SO at least). – Intentss Feb 24 at 18:51

6 Answers

I found a REALLY SIMPLE solution to this as a side-effect to a table view I was working on.....

Store the cell height in a variable that reports the original height normally via the heightForCellAt..etc etc then when you want to animate a height change, simply change the value of the variable and call this...

[tableView beginUpdates];
[tableView endUpdates];

You will find it doesn't do a full reload but is enough for the table to know it has to redraw the cells, grabbing the new height value for the cell.... and guess what? It ANIMATES the change for you. Sweet.

I have a more detailed explanation and full code samples on my blog... Animate UITableView Cell Height Change

share|improve this answer
Simon Lee's answer works great. Just keep an array of rowHeights. Change the one you want and then do his beginUpdates/endUpdates trick. – user256174 Jan 21 '10 at 20:50
76  
Why is this answer not being accepted yet? – Lukasz Oct 26 '10 at 23:07
1  
It's better than [self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES]; – iwill Jun 30 '11 at 11:26
2  
This is brilliant. But is there any way we can control the animation speed of the table? – Josh Kahane Nov 23 '12 at 14:43
1  
This is a bizarre solution, but it's what Apple recommends in the WWDC 2010 "Mastering Table View" session as well. I'm going to file a bug report on adding this to the documentation because I've just spent about 2 hours researching. – bpapa Feb 21 at 17:32
show 4 more comments

reloadData is no good because there's no animation...

This is what I'm currently trying:

NSArray* paths = [NSArray arrayWithObject:[NSIndexPath indexPathForRow:0 inSection:0]];
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:paths withRowAnimation:UITableViewRowAnimationFade];
[self.tableView deleteRowsAtIndexPaths:paths withRowAnimation:UITableViewRowAnimationFade];
[self.tableView endUpdates];

It almost works right. Almost. I'm increasing the height of the cell, and sometimes there's a little "hiccup" in the table view as the cell is replaced, as if some scrolling position in the table view is being preserved, the new cell (which is the first cell in the table) ends up with its offset too high, and the scrollview bounces to reposition it.

share|improve this answer
Personally I found that using this method but with UITableViewRowAnimationNone provides a smoother but still not perfect result. – Ron Srebro Jan 8 '10 at 3:29

Get the indexpath of the row selected. Reload the table. In the heightForRowAtIndexPath method of UITableViewDelegate, set the height of the row selected to a different height and for the others return the normal row height

share|improve this answer

I like the answer by Simon Lee. I didn't actually try that method but it looks like it would change the size of all the cells in the list. I was hoping for a change of just the cell that is tapped. I kinda did it like Simon but with just a little difference. This will change the look of a cell when it is selected. And it does animate. Just another way to do it.

Create an int to hold a value for the current selected cell index:

int currentSelection;

Then:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    int row = [indexPath row];
    selectedNumber = row;
    [tableView beginUpdates];
    [tableView endUpdates];
}

Then:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {

    if ([indexPath row] == currentSelection) {
        return  80;
    }
    else return 40;


}

I am sure you can make similar changes in tableView:cellForRowAtIndexPath: to change the type of cell or even load a xib file for the cell.

Like this, the currentSelection will start at 0. You would need to make adjustments if you didn't want the first cell of the list (at index 0) to look selected by default.

share|improve this answer
Check the code attached to my post, I did exactly this, double the height for a cell when selected. :) – Simon Lee Jun 18 '11 at 19:23
1  
"I didn't actually try that method but it looks like it would change the size of all the cells in the list" - then you didn't look very hard. – jamie Aug 11 '11 at 9:27

I just resolved this problem with a little hack:

static int s_CellHeight = 30;
static int s_CellHeightEditing = 60;

- (void)onTimer {
    cellHeight++;
    [tableView reloadData];
    if (cellHeight < s_CellHeightEditing)
    	heightAnimationTimer = [[NSTimer scheduledTimerWithTimeInterval:0.001 target:self selector:@selector(onTimer) userInfo:nil repeats:NO] retain];
}

- (CGFloat)tableView:(UITableView *)_tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    	if (isInEdit) {
    		return cellHeight;
    	}
    	cellHeight = s_CellHeight;
    	return s_CellHeight;
}

When I need to expand the cell height I set isInEdit = YES and call the method [self onTimer] and it animates the cell growth until it reach the s_CellHeightEditing value :-)

share|improve this answer
In the simulator works great, but in the iPhone hardware is laggy. With a 0.05 timer delay and with a cellHeight increase of 5 units, it's much better, but nothing like CoreAnimation – Dzamir Aug 21 '09 at 17:23

To my knowledge, the height of the cell itself cannot be animated, however the contentView of the cell, is allowed to be bigger than the cell itself. You may want to animate the size cell's contentView frame and have it draw over the cell below or above it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.