当前位置:   article > 正文

Swift 让ScrollView滚动到具体某个位置_scrollview滚动到指定位置

scrollview滚动到指定位置

1. 使用scrollToItem方法滚动集合视图

  1. DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
  2. let firstIndexPath = IndexPath(item: 0, section: 0)
  3. let lastIndexPath = IndexPath(item: self.recordArray.count - 1, section: 0)
  4. // Scroll to first item
  5. self.collectionView.scrollToItem(at: firstIndexPath, at: .left, animated: false)
  6. // Delay for a short time (e.g., 0.1 seconds)
  7. DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
  8. // Scroll to last item
  9. self.collectionView.scrollToItem(at: lastIndexPath, at: .left, animated: false)
  10. }
  11. }

上述代码中,首先使用scrollToItem方法将集合视图滚动到第一条数据(左侧对齐),然后在稍后的延迟时间后,再次使用scrollToItem方法将其滚动到最后一条数据(左侧对齐)。

2. 使用setContentOffset方法来滚动集合视图

  1. DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
  2. let firstIndexPath = IndexPath(item: 0, section: 0)
  3. let lastIndexPath = IndexPath(item: self.recordArray.count - 1, section: 0)
  4. if let firstCellAttributes = self.collectionView.layoutAttributesForItem(at: firstIndexPath),
  5. let lastCellAttributes = self.collectionView.layoutAttributesForItem(at: lastIndexPath) {
  6. let contentOffset = CGPoint(x: lastCellAttributes.frame.origin.x - firstCellAttributes.frame.origin.x,
  7. y: 0)
  8. self.collectionView.setContentOffset(contentOffset, animated: false)
  9. }
  10. }

上述代码中,我们使用了setContentOffset方法来滚动集合视图。我们获取了第一条数据和最后一条数据的布局属性,然后根据它们的位置计算出正确的contentOffset值,使得集合视图能够滚动到最后一条数据。

3. 使用scrollRectToVisible方法进行滚动集合视图

  1. DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
  2. let firstIndexPath = IndexPath(item: 0, section: 0)
  3. let lastIndexPath = IndexPath(item: self.recordArray.count - 1, section: 0)
  4. if let firstCellAttributes = self.collectionView.layoutAttributesForItem(at: firstIndexPath),
  5. let lastCellAttributes = self.collectionView.layoutAttributesForItem(at: lastIndexPath) {
  6. let firstRect = firstCellAttributes.frame
  7. let lastRect = lastCellAttributes.frame
  8. let visibleRect = CGRect(x: lastRect.origin.x, y: 0, width: self.collectionView.bounds.width, height: self.collectionView.bounds.height)
  9. self.collectionView.scrollRectToVisible(visibleRect, animated: false)
  10. }
  11. }

在上述代码中,我们使用了scrollRectToVisible方法来滚动集合视图。我们获取了第一条数据和最后一条数据的布局属性,并根据它们的位置计算出一个可见的矩形区域,然后将该矩形区域滚动到可见范围内。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/312733
推荐阅读
相关标签
  

闽ICP备14008679号