vote up 0 vote down star
3

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?

flag

6 Answers

vote up 0 vote down

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.

link|flag
vote up 0 vote down

This doesn't answer your question, but if you're working on an app you're hoping to put in the App Store it's worth noting you might get rejected for non-standard UI. There is precedent: http://blogs.oreilly.com/iphone/2009/01/thinking-about-table-selection.html

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

You can try reloadRowsAtIndexPath:, but I've never been able to get it to work for more than one cell at a time - on the second selection, junk inevitably presents itself.

link|flag
vote up 0 vote down

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 :-)

link|flag
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 at 17:23

Your Answer

Get an OpenID
or

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