- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/Dromaguirre/UITableView-AnimationControl
软件介绍
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];
