请解决我对滚动视图的疑问。
当我们在图像上添加过滤器时,如何在Instagram等其他单元格上自动滚动集合视图。
答案 0 :(得分:1)
在Swift< 2.x你可以做类似的事情:
collectionView.scrollToItemAtIndexPath(indexPath, atScrollPosition: UICollectionViewScrollPosition.CenteredHorizontally, animated: true)
在Swift 3中你可以做这样的事情
let indexPath = IndexPath(row: itemIndex, section: sectionIndex)
collectionView.scrollToItem(at: indexPath, at: UICollectionViewScrollPosition.right, animated: true)
swift提供的各种Scroll Position是:
居中水平/ centeredVertically /底/左/右/顶
答案 1 :(得分:0)
[liveVideoCollectionView scrollToItemAtIndexPath:indexPath
atScrollPosition:UICollectionViewScrollPositionCenteredHorizontally
animated:YES];