ios中的UICollectionView单元格滚动问题

时间:2017-03-23 10:31:32

标签: ios swift autolayout uicollectionview

重新加载UICollectionView时,CollectionView单元格不会反弹。See the image.请参阅图像集合标题" Bgrawal ji Sourabh"不应该在距离右侧很远的地方。它应该反弹。

3 个答案:

答案 0 :(得分:0)

试试这个:

[self.collectionView scrollToItemAtIndexPath:yourDesiredIndexPath atScrollPosition:UICollectionViewScrollPositionCenteredVertically animated:NO];

答案 1 :(得分:0)

请在重新加载collectionView

之前添加以下代码
let indexes = NSIndexPath(forItem: 0, inSection: 0)
self.collectionViewSecond.scrollToItemAtIndexPath(indexes, atScrollPosition: .None, animated: false)

它的工作对我来说也希望为你工作!

答案 2 :(得分:0)

enter image description here

确保您已在CollectionView attribute Inspector Bounce on ScrollBounce on zoom中启用了这两个选项,这样collectionView可以提供反馈反馈在卷轴上。