【问题标题】:`setCollectionViewLayout` animation broken when also changing collection view frame`setCollectionViewLayout` 动画在更改集合视图框架时中断
【发布时间】:2021-09-04 19:06:02
【问题描述】:

我正在尝试在水平胶片布局和垂直堆栈布局之间转换我的收藏视图。

Horizontal film strip Vertical/expanded stack

这是我目前正在做的事情:

  1. 使用setCollectionViewLayout(_:animated:completion:)在水平和垂直滚动方向之间转换
  2. 更改集合视图的高度约束,以及UIView.animateself.view.layoutIfNeeded()

从胶片到垂直堆栈的动画很好。但是,从垂直堆栈到胶片的动画被破坏了。这是它的样子:

如果我默认设置collectionViewHeightConstraint 300,并删除这些行:

collectionViewHeightConstraint.constant = 300
collectionViewHeightConstraint.constant = 50

...过渡动画两种方式都很好。但是,有多余的间距,我希望胶片布局仅在 1 行中。

我怎样才能让动画双向流畅?这是我的代码 (link to the demo project):

class ViewController: UIViewController {

    var isExpanded = false
    var verticalFlowLayout = UICollectionViewFlowLayout()
    var horizontalFlowLayout = UICollectionViewFlowLayout()
    
    @IBOutlet weak var collectionView: UICollectionView!
    @IBOutlet weak var collectionViewHeightConstraint: NSLayoutConstraint!
    @IBAction func toggleExpandPressed(_ sender: Any) {
        
        isExpanded.toggle()
        if isExpanded {
            collectionView.setCollectionViewLayout(verticalFlowLayout, animated: true) /// set vertical scroll
            collectionViewHeightConstraint.constant = 300 /// make collection view height taller
        } else {
            collectionView.setCollectionViewLayout(horizontalFlowLayout, animated: true) /// set horizontal scroll
            collectionViewHeightConstraint.constant = 50 /// make collection view height shorter
        }
        
        /// animate the collection view's height
        UIView.animate(withDuration: 1) {
            self.view.layoutIfNeeded()
        }
        
        /// Bonus points:
        /// This makes the animation way more worse, but I would like to be able to scroll to a specific IndexPath during the transition.
        //  collectionView.scrollToItem(at: IndexPath(item: 9, section: 0), at: .bottom, animated: true)
    }
    
    override func viewDidLoad() {
        super.viewDidLoad()
        verticalFlowLayout.scrollDirection = .vertical
        horizontalFlowLayout.scrollDirection = .horizontal
        
        collectionView.collectionViewLayout = horizontalFlowLayout
        collectionView.dataSource = self
        collectionView.delegate = self
    }
}

extension ViewController: UICollectionViewDelegateFlowLayout {
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
        
        /// if expanded, cells should be full-width
        /// if not expanded, cells should have a width of 50
        return isExpanded ? CGSize(width: collectionView.frame.width, height: 50) : CGSize(width: 100, height: 50)
    }
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, minimumLineSpacingForSectionAt section: Int) -> CGFloat {
        return 0 /// no spacing needed for now
    }
}

/// sample data source
extension ViewController: UICollectionViewDataSource {
    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return 10
    }
    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "ID", for: indexPath)
        cell.contentView.layer.borderWidth = 5
        cell.contentView.layer.borderColor = UIColor.red.cgColor
        return cell
    }
}

【问题讨论】:

标签: ios swift uicollectionview


【解决方案1】:

我通过使用自定义 UICollectionViewFlowLayout 类 (link to demo repo) 使其工作。中心单元格甚至在两种布局中都保持居中(这实际上是我问题中“奖励积分”部分的确切目的)!

这是我的视图控制器。我现在使用自定义闭包 sizeForListItemAtsizeForStripItemAt,而不是遵循 UICollectionViewDelegateFlowLayout

class ViewController: UIViewController {

    var isExpanded = false
    lazy var listLayout = FlowLayout(layoutType: .list)
    lazy var stripLayout = FlowLayout(layoutType: .strip)
    
    @IBOutlet weak var collectionView: UICollectionView!
    @IBOutlet weak var collectionViewHeightConstraint: NSLayoutConstraint!
    @IBAction func toggleExpandPressed(_ sender: Any) {
        
        isExpanded.toggle()
        if isExpanded {
            collectionView.setCollectionViewLayout(listLayout, animated: true)
            collectionViewHeightConstraint.constant = 300
        } else {
            collectionView.setCollectionViewLayout(stripLayout, animated: true)
            collectionViewHeightConstraint.constant = 60
        }
        UIView.animate(withDuration: 0.6) {
            self.view.layoutIfNeeded()
        }
    }
    
    override func viewDidLoad() {
        super.viewDidLoad()
        collectionView.collectionViewLayout = stripLayout
        collectionView.dataSource = self
        
        /// use these instead of `UICollectionViewDelegateFlowLayout`
        listLayout.sizeForListItemAt = { [weak self] indexPath in
            return CGSize(width: self?.collectionView.frame.width ?? 100, height: 50)
        }
        stripLayout.sizeForStripItemAt = { indexPath in
            return CGSize(width: 100, height: 50)
        }
    }
}

/// sample data source
extension ViewController: UICollectionViewDataSource {
    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return 10
    }
    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "ID", for: indexPath)
        cell.contentView.layer.borderWidth = 5
        cell.contentView.layer.borderColor = UIColor.red.cgColor
        return cell
    }
}

然后,这是我的自定义 UICollectionViewFlowLayout 类。在prepare 内部,我手动计算并设置了每个单元格的帧。我不确定为什么会这样,但系统现在能够确定哪些单元格等于哪个单元格,即使跨多个FlowLayouts(listLayoutstripLayout。)。

enum LayoutType {
    case list
    case strip
}

class FlowLayout: UICollectionViewFlowLayout {

    var layoutType: LayoutType
    var sizeForListItemAt: ((IndexPath) -> CGSize)? /// get size for list item
    var sizeForStripItemAt: ((IndexPath) -> CGSize)? /// get size for strip item
    
    var layoutAttributes = [UICollectionViewLayoutAttributes]() /// store the frame of each item
    var contentSize = CGSize.zero /// the scrollable content size of the collection view
    override var collectionViewContentSize: CGSize { return contentSize } /// pass scrollable content size back to the collection view
    
    override func prepare() { /// configure the cells' frames
        super.prepare()
        
        guard let collectionView = collectionView else { return }
        let itemCount = collectionView.numberOfItems(inSection: 0) /// I only have 1 section
        
        if layoutType == .list {
            var y: CGFloat = 0 /// y position of each cell, start at 0
            for itemIndex in 0..<itemCount {
                let indexPath = IndexPath(item: itemIndex, section: 0)
                let attributes = UICollectionViewLayoutAttributes(forCellWith: indexPath)
                attributes.frame = CGRect(
                    x: 0,
                    y: y,
                    width: sizeForListItemAt?(indexPath).width ?? 0,
                    height: sizeForListItemAt?(indexPath).height ?? 0
                )
                layoutAttributes.append(attributes)
                y += attributes.frame.height /// add height to y position, so next cell becomes offset
            }                           /// use first item's width
            contentSize = CGSize(width: sizeForStripItemAt?(IndexPath(item: 0, section: 0)).width ?? 0, height: y)
        } else {
            var x: CGFloat = 0 /// z position of each cell, start at 0
            for itemIndex in 0..<itemCount {
                let indexPath = IndexPath(item: itemIndex, section: 0)
                let attributes = UICollectionViewLayoutAttributes(forCellWith: indexPath)
                attributes.frame = CGRect(
                    x: x,
                    y: 0,
                    width: sizeForStripItemAt?(indexPath).width ?? 0,
                    height: sizeForStripItemAt?(indexPath).height ?? 0
                )
                layoutAttributes.append(attributes)
                x += attributes.frame.width /// add width to z position, so next cell becomes offset
            }                              /// use first item's height
            contentSize = CGSize(width: x, height: sizeForStripItemAt?(IndexPath(item: 0, section: 0)).height ?? 0)
        }
    }
    
    /// pass attributes to the collection view flow layout
    override func layoutAttributesForItem(at indexPath: IndexPath) -> UICollectionViewLayoutAttributes? {
        return layoutAttributes[indexPath.item]
    }
    override func layoutAttributesForElements(in rect: CGRect) -> [UICollectionViewLayoutAttributes]? {
        return layoutAttributes.filter { rect.intersects($0.frame) }
    }

    /// initialize with a layout
    init(layoutType: LayoutType) {
        self.layoutType = layoutType
        super.init()
    }
    
    /// boilerplate code
    required init?(coder aDecoder: NSCoder) { fatalError("init(coder:) has not been implemented") }
    override func shouldInvalidateLayout(forBoundsChange newBounds: CGRect) -> Bool { return true }
    override func invalidationContext(forBoundsChange newBounds: CGRect) -> UICollectionViewLayoutInvalidationContext {
        let context = super.invalidationContext(forBoundsChange: newBounds) as! UICollectionViewFlowLayoutInvalidationContext
        context.invalidateFlowLayoutDelegateMetrics = newBounds.size != collectionView?.bounds.size
        return context
    }
}

感谢this amazing article 的大力帮助。

【讨论】:

  • 这很有趣。我想我可以尝试回答I'm not exactly sure why this works 部分。在您之前的实现中 - 您有两个单独的 UICollectionViewFlowLayout 实例,并且 collectionView 没有尝试在它们之间找到关系/映射。在您当前的实现中,您对两种样式都使用相同的UICollectionViewFlowLayout,这次collectionView 能够为相同的indexPath 值找到旧/新UICollectionViewLayoutAttributes 实例之间的关系/映射。有意义吗?
  • @TarunTyagi 是的,这确实有道理!但我不确定。现在,我仍然使用 2 个实例。只是它们是我自定义的FlowLayout 而不是UICollectionViewFlowLayout 的实例。
【解决方案2】:

问题是由于动画的持续时间不同,动画改变布局和改变高度相互冲突。我建议进行以下更改

UIView.animate(withDuration: self.isExpanded ? 0.3 : 0.5, delay: 0.0, options: self.isExpanded ? .curveEaseIn : .curveEaseOut) {
  if self.isExpanded {
    self.collectionView.setCollectionViewLayout(self.verticalFlowLayout, animated: false) /// set vertical scroll
    self.collectionViewHeightConstraint.constant = 300 /// make collection view height taller
  } else{
    self.collectionView.setCollectionViewLayout(self.horizontalFlowLayout, animated: false) /// set horizontal scroll
    self.collectionViewHeightConstraint.constant = 50 /// make collection view height shorter
  }
   self.view.layoutIfNeeded()
} completion: { (completed) in
    self.collectionView.reloadData()
}

【讨论】:

  • 感谢您的回答。不过看起来也好不了多少……gif
【解决方案3】:

您可以使用此代码修复动画。另外,为self.collectionView.scrollToItem设置延迟(设置延迟值与动画持续时间相同)

@IBAction func toggleExpandPressed(_ sender: Any) {
    
    isExpanded.toggle()
    
    if isExpanded {
        collectionView.setCollectionViewLayout(verticalFlowLayout, animated: true) /// set vertical scroll
        collectionViewHeightConstraint.constant = 300 /// make collection view height taller
        UIView.animate(withDuration: 1) {
            self.view.layoutIfNeeded()
        }
        
    } else {
        collectionViewHeightConstraint.constant = 50 /// make collection view height shorter
        UIView.animate(withDuration: 1) { [self] in
            self.view.layoutIfNeeded()
            collectionView.setCollectionViewLayout(horizontalFlowLayout, animated: false) /// set horizontal scroll
        }
    }
    
    /// Bonus points:
    /// This makes the animation way more worse, but I would like to be able to scroll to a specific IndexPath during the transition.
    DispatchQueue.main.asyncAfter(deadline: .now() + 1) {
        self.collectionView.scrollToItem(at: IndexPath(item: self.isExpanded ? 9 : 5, section: 0), at: self.isExpanded ? .centeredVertically : .centeredHorizontally, animated: true)
    }
    
}

【讨论】:

  • 谢谢,但动画中仍然存在错误跳转...从垂直堆栈到胶片,单元格大小立即更改。我希望它顺利。
猜你喜欢
  • 2016-10-15
  • 1970-01-01
  • 2016-02-22
  • 2012-05-16
  • 1970-01-01
  • 2020-07-23
  • 1970-01-01
  • 2022-12-06
  • 1970-01-01
相关资源
最近更新 更多