我使用[self.tableView moveRowAtIndexPath:indexPath toIndexPath:newIndexPath];
将行移动到带动画的新indexPath
。
当indexPath
和newIndexPath
都在屏幕上时,这意味着包含在[self.tableView indexPathsForVisibleRows]
中,动画效果很好。但如果其中一个在屏幕外,则没有动画,下一个单元格会在向上移动之前略微跳跃。
有什么办法可以在移动到屏幕外的indexPath时使其动画化吗?