I have a UITableView on which I switch setEditing:animated: to allow the user to insert and delete rows. When editing is turned on, I want to add a new row, insert new item to the table, and then I want the edit controls to animate as usual. I do not want the new line insert new item animate by itself using something like fade. I want it to just appear, and then paste, like any existing source rows of table data.
Here what happens as a result of my current code (click to enlarge):

The top line does what I want - it just jumps and the delete icon disappears. When it disappears, the delete icon disappears and the line expands again.
The second row is my row containing no data, which I myself add to the table. When it appears, it does not come to life at all. The icon and the insert line appear immediately and are not inserted. When it disappears, the line expands perfectly, but the plus sign slide with it. Animation occurs for the entire line, not for the plus sign, and then the line is separate, like the first line.
Here is a quick code of my code, but I think that providing a link to a class file might be better.
When the edit button on my toolbar is clicked, I call the UIViewController method setEditing:animated: In this method, I do the following ...
- (void)setEditing:(BOOL)editing animated:(BOOL)animated { [super setEditing:editing animated:animated];
Here the insertion animation takes place. I tried wrapping it all in [_table beginUpdate] and endUpdate, and also just insert a line. It seems that the pure animation I was aiming for is not being created.
Any ideas what I might be missing? The entire code file is here:
https://github.com/ryancole/pound-client/blob/master/pound-client/controllers/ChannelListViewController.m#L106-L127
thanks