答案 0 :(得分:0)
尝试在tableView.insertRowsAtIndexPaths之前添加
tableView.beginUpdates()
并且在insertRowsAtIndexPaths之后
tableView.endUpdates()
示例:
tableView.beginUpdates()
tableView.insertRowsAtIndexPaths(indexPath, withRowAnimation: .Bottom)
tableView.endUpdates()