UITableView-AnimationControl 是控制 UITableView 行/区间更新 持续时间和完结的方法。
代码示例
[self.tableViewDataArray addObject:object]; [self.tableView beginSmartUpdatesForDuration:0.25]; [self.tableView insertRowsAtIndexPaths:indexPaths withRowAnimation:rowAnimation completion:^{ // Update animations ended. Do whatever you want! }]; [self.tableView endSmartUpdates];