现象
添加数据时即便设置了UITableViewRowAnimationNone, 也会导致效果为UITableViewRowAnimationAutomatic的动画展开方式
解决
加入performWithoutAnimation即可
[UIView performWithoutAnimation:^{
[self.tableView beginUpdates];
[self.tableView insertRowsAtIndexPaths:poolIndex withRowAnimation:UITableViewRowAnimationNone];
[self.tableView endUpdates];
}];