单元格部分可见的 UICollectionView

Posted

技术标签:

【中文标题】单元格部分可见的 UICollectionView【英文标题】:UICollectionView with cell partially visible 【发布时间】:2019-03-10 13:54:50 【问题描述】:

我想做一个可以水平滚动的collectionView,只有一个单元格项目可见,一个部分可见。单元格应占据 collectionView 的整个高度。

我玩过collectionView的sectionInset。但无法达到我的目标。

我的代码:

import UIKit

class BooksController: UIViewController 

    @IBOutlet weak var booksCollectionView: UICollectionView!

    override func viewDidLoad() 
        super.viewDidLoad()


        let layout: UICollectionViewFlowLayout = UICollectionViewFlowLayout()
        layout.sectionInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 20)
        layout.itemSize = CGSize(width: booksCollectionView.frame.width, height: booksCollectionView.frame.height)
        layout.minimumInteritemSpacing = 10
        layout.minimumLineSpacing = 10
        layout.scrollDirection = .horizontal
        booksCollectionView.collectionViewLayout = layout


        booksCollectionView.register(UINib(nibName: "BookCell", bundle: .main), forCellWithReuseIdentifier: "BookCell")
        booksCollectionView.dataSource = self
        booksCollectionView.delegate = self
        // Do any additional setup after loading the view.
    

    override func didReceiveMemoryWarning() 
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    


    /*
    // MARK: - Navigation

    // In a storyboard-based application, you will often want to do a little preparation before navigation
    override func prepare(for segue: UIStoryboardSegue, sender: Any?) 
        // Get the new view controller using segue.destinationViewController.
        // Pass the selected object to the new view controller.
    
    */



extension BooksController: UICollectionViewDataSource 
    func numberOfSections(in collectionView: UICollectionView) -> Int 
        return 1
    

    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int 
        return 10
    

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell 
        if let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "BookCell", for: indexPath) as? BookCell 
            return cell
        
        return UICollectionViewCell()
    


extension BooksController: UICollectionViewDelegate, UICollectionViewDelegateFlowLayout 
//    func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, insetForSectionAtIndex section: Int) -> UIEdgeInsets 
//        return UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 20)
//    

目标(此处类似于 collectionView)

我的输出

【问题讨论】:

似乎是你要找的东西:***.com/questions/35045155/… 根据需要将单元格宽度减小到 50 或 100。 【参考方案1】:

使用这段代码

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize 
        let width = self.view.frame.width - 100
        let height = self.view.frame.height
        return CGSize(width: width, height: height)
    

别忘了添加这个委托

UICollectionViewDelegateFlowLayout

【讨论】:

最好使用collectionView.frame 而不是self.view.frame,因为collectionView 可能小于view 当 collectionView 滚动时,我需要第二个(下一个)项目应该完全可见。我试过上面的方法。但是通过这种方式,当我滚动时,第二项是不完全可见的。相反,其余部分是可见的 不完全可见是什么意思?你想要快照效果吗?如果它的宽度小于集合视图,它怎么可能不完全可见?【参考方案2】:

添加 UICollectionViewDelegateFlowLayout

func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize 
        return CGSize(width: self.view.frame.width, height: self.view.frame.height)
    

【讨论】:

当 collectionView 滚动时,我需要第二个(下一个)项目应该完全可见。我试过上面的方法。但是通过这种方式,当我滚动时,第二项是不完全可见的。相反,其余部分是可见的【参考方案3】:

使用这个 Pod MSPeekCollectionViewDelegateImplementation

GitHub

【讨论】:

【参考方案4】:

如果需要显示第二个集合视图单元格的一半,可以使用

collectionView.contentInset = UIEdgeInsets.init(上:0,左:10,下:0,右:10)

对于集合视图的高度和搭配,您可以尝试 CollectionViewLayout 委托

【讨论】:

在情节提要中,删除 UICollectionView 中的默认插图。

以上是关于单元格部分可见的 UICollectionView的主要内容,如果未能解决你的问题,请参考以下文章

UICollectionView 单元格在可见时不断重新加载

预加载下一个(当前不可见)单元格 UICollectionView

UICollectionView 单元格选择问题 - 加载视图时只能选择可见区域上的单元格

如何检测最后一个单元格是不是在 UICollectionView 中可见?

更新 UICollectionView 中不可见的单元格

UICollectionView indexPathsForVisibleItems 不更新新的可见单元格