我有一个水平集合视图和一个按钮。当我点击按钮时,我打电话
let indexPath : IndexPath = IndexPath(item: item, section: 0)
collectionView.scrollToItem(at: indexPath, at: .centeredHorizontally, animated: true)
问题是滚动动画没有发生,但是如果我在scrollToItem
上创建一个断点,它就会进入内部方法。
为什么会这样?
答案 0 :(得分:-1)
尝试该代码..
collectionView.scrollToItemAtIndexPath(
NSIndexPath(forItem: 0, inSection: startIndex),
atScrollPosition: .None,
animated: false)
}