How to create a toolbar between UITableView rows

前端 未结 6 1715
终归单人心
终归单人心 2020-12-12 09:05

I am interested on how tweetbot does the following:

\"Enter

I would like to cr

6条回答
  •  抹茶落季
    2020-12-12 09:57

    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.

提交回复
热议问题