插入新行时不会发生行动画

时间:2016-05-19 18:41:14

标签: ios swift

我正在关注“开始开发iOS应用程序[Swift]”教程,并且似乎存在动画新插入行的问题。这是教程中提供的代码。

enter image description here

出于某种原因,没有动画发生

1 个答案:

答案 0 :(得分:0)

尝试在tableView.insertRowsAtIndexPaths之前添加   tableView.beginUpdates()
并且在insertRowsAtIndexPaths之后   tableView.endUpdates()

示例:

tableView.beginUpdates()
tableView.insertRowsAtIndexPaths(indexPath, withRowAnimation: .Bottom)
tableView.endUpdates()