如何使用自定义布局跳转到 UICollectionView 中的任何单元格? [英] How to jump to any Cell in a UICollectionView by using a custom layout?

查看:27
本文介绍了如何使用自定义布局跳转到 UICollectionView 中的任何单元格?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的水平 UICollectionView 中有 40 个单元格和一个按钮.

I have 40 cells in my horizontal UICollectionView and a button.

当我点击按钮时,我可以从第 5 个单元格跳到第 10 个单元格.

I can jump from cell number 5 to cell number 10 when I click on the button.

但是一旦我想去另一个单元格(例如从 5 到 25 ),

But as soon as I want to go to a further cell ( for example from 5 to 25 ),

它不起作用,而是变为 0.

it doesn't work, and instead it goes to 0.

代码:

func setValue(value: Int, animated: Bool) {
   self.value = value
   if let row = find(values, value) {
   let indexPath = NSIndexPath(forRow: row, inSection: 0)
   selectedCell = collectionView.cellForItemAtIndexPath(indexPath) as? StepperCell
   collectionView.scrollToItemAtIndexPath(indexPath, atScrollPosition: .CenteredHorizontally, animated: animated)
  }
 }

override func prepareLayout() {
   let start = Int(collectionView!.bounds.size.width * 0.5) - statics.width / 2
   let length = collectionView!.numberOfItemsInSection(0)

if cache.isEmpty && length > 0 {
   for item in 0..<length {
     let indexPath = NSIndexPath(forItem: item, inSection: 0)
     let attributes = UICollectionViewLayoutAttributes(forCellWithIndexPath: indexPath)
     attributes.frame = CGRect(
      x: start + (statics.width + statics.padding) * indexPath.item,
      y: 0,
      width: statics.width,
      height: statics.height
    )
    cache.append(attributes)
  }
  contentWidth = CGRectGetMaxX(cache.last!.frame) + CGFloat(start)
   }
 }

 override func layoutAttributesForElementsInRect(rect: CGRect) -> [AnyObject]? {
   var layoutAttributes = [UICollectionViewLayoutAttributes]()
   for attributes in cache {
      if CGRectIntersectsRect(attributes.frame, rect) {
        layoutAttributes.append(attributes)
    }
  }
  return layoutAttributes
  }
 }

推荐答案

经过一些研究,并得到了一位编码人员的帮助.我想出了一个更简单、更有效的解决方案.我仅将自定义布局用于捕捉效果(在单元格之间切换时),然后让流布局处理其余部分.这是代码:

After some research, and some help from a fellow coder. I came up with a simpler and more effective solution. I use custom layout only for the snapping effect (when switching between cells), and then I let the flow layout handle the rest. here is the code :

struct Statics {  
   static let width = CGFloat(50.0)  
   static let height = CGFloat(50.0)  
   static let padding = CGFloat(5.0)  
}  

func commonInit() {  
   ...  
   // I had to set layout from the code, didn't work from the Interface Builder  
    let layout = HorizontalLayout()  
    layout.scrollDirection = .Horizontal  
    collectionView.collectionViewLayout = layout  
    collectionView.dataSource = self  
}  

override func layoutSubviews() {  
    super.layoutSubviews()  

    // Set item size, line spacing and insets and let the flow layout do the rest  
    let layout = collectionView.collectionViewLayout as! HorizontalLayout  
    layout.itemSize = CGSize(width: Statics.width, height: Statics.height)  
    layout.minimumLineSpacing = Statics.padding  
    let sideMargin = (collectionView.bounds.width - Statics.width) / 2.0  
    layout.sectionInset = UIEdgeInsetsMake(0.0, sideMargin, 0.0, sideMargin)  

    setValue(value, animated: true)  
}  

 class HorizontalLayout: UICollectionViewFlowLayout {  
   // This the only method you need to override  
    override func targetContentOffsetForProposedContentOffset(proposedContentOffset: CGPoint, withScrollingVelocity velocity: CGPoint) -> CGPoint {  
     let contentOffset: CGPoint  
     let itemWidth = itemSize.width  
     let padding = minimumLineSpacing  

    // Calculate nearest cell from the proposed content offset  
    let index = round(proposedContentOffset.x / (itemWidth + padding))  
    let x = (itemWidth + padding) * index  
    contentOffset = CGPoint(x: x, y: proposedContentOffset.y)  

    return contentOffset  
  }  
}   

这篇关于如何使用自定义布局跳转到 UICollectionView 中的任何单元格?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆