CollectionView scrollToItem不滚动

时间:2017-03-07 12:49:21

标签: ios collectionview

我有一个水平集合视图和一个按钮。当我点击按钮时,我打电话

let indexPath : IndexPath = IndexPath(item: item, section: 0)
collectionView.scrollToItem(at: indexPath, at: .centeredHorizontally, animated: true)

问题是滚动动画没有发生,但是如果我在scrollToItem上创建一个断点,它就会进入内部方法。

为什么会这样?

1 个答案:

答案 0 :(得分:-1)

尝试该代码..

collectionView.scrollToItemAtIndexPath(
        NSIndexPath(forItem: 0, inSection: startIndex),
        atScrollPosition: .None,
        animated: false)
 }