我正在尝试制作一个table view
,当它向下拖动到某个content offset
时可以添加一个单元格。以下链接中的动画类似:
我尝试使用委托函数scrollViewDidScroll(_:)
,但是一旦添加单元格,我将需要停止该函数。
我的代码:
func scrollViewDidScroll(_ scrollView: UIScrollView) {
if scrollView.contentOffset.y <= -110 {
cellCount += 1
dataSource?.append(Model())
tableView.insertRows(at: [IndexPath(row: 0, section: 0)], with: .top)
tableView.scrollToRow(at: IndexPath(row: 0, section: 0), at: .top, animated: true)
}
}
如何实现链接中的动画?