答案 0 :(得分:0)
要在表格视图中插入行动画,建议您使用:
[myTable beginUpdates];
[myTable insertRowsAtIndexPaths:indexPathsToInsert withRowAnimation:UITableViewRowAnimationBottom];
[myTable endUpdates];
其中indexPathsToInsert是NSIndexPath
的数组,引用要插入的行的索引。在进行此更新之前,您的数据源必须保持一致。