I am interested on how tweetbot does the following:
I would like to cr
I would not add a subview to a UITableViewCell
, I would add another row to the UITableView
. That way, the UITableView
will take care of the animation. (And I don't think that's possible to animated UITableViewCell
height changes...)
Use simply
- (void)insertRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation
do add a row. And
- (void)deleteRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:(UITableViewRowAnimation)animation
to remove it.