未调用 UICollectionView cellForItem
Posted
技术标签:
【中文标题】未调用 UICollectionView cellForItem【英文标题】:UICollectionView cellForItem not called 【发布时间】:2017-05-11 10:08:41 【问题描述】:我在基本 ViewController 中实现 UICollectionView (collectionView) 我的集合视图必须检索 5 个单元格,如 numbersofItemInSection 代码。 显示 CollectionView 并调用 numbersofItemInSection 函数,但未调用 cellForItemAt 函数,因此集合视图为空。
import UIKit
private let reuseIdentifier = "Cell"
class TestViewController: UIViewController, UICollectionViewDataSource, UICollectionViewDelegate
lazy var collectionView : UICollectionView =
let layout = UICollectionViewFlowLayout()
let cv = UICollectionView(frame: .zero, collectionViewLayout: layout)
cv.translatesAutoresizingMaskIntoConstraints = false
cv.delegate = self
cv.dataSource = self
return cv
()
override func viewDidLoad()
super.viewDidLoad()
// Register cell classes
self.collectionView.register(UICollectionViewCell.self, forCellWithReuseIdentifier: reuseIdentifier)
collectionView.backgroundColor = .white
navigationItem.title = "test"
setupViews()
func setupViews()
view.addSubview(collectionView)
collectionView.leftAnchor.constraint(equalTo: view.leftAnchor).isActive = true
collectionView.rightAnchor.constraint(equalTo: view.rightAnchor).isActive = true
collectionView.heightAnchor.constraint(equalToConstant: 60).isActive = true
collectionView.topAnchor.constraint(equalTo: topLayoutGuide.bottomAnchor).isActive = true
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int
return 5
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath)
// Configure the cell
cell.backgroundColor = .red
return cell
【问题讨论】:
它确实按预期工作。 imgur.com/a/IYslT 你用过 xib 的 cell 吗? @SaurabhYadav 这可能是我的 Xcode 设置吗?因为我昨天安装了 Xcode 7,所以我现在有 2 个 Xcode 应用程序。 @KKRocks 不,我没有使用 xib。只是 UICollectionViewCell 本身。 它与 stroyboard 中的 viewcontroller 一致吗? 【参考方案1】:这是您的 collectionView 的高度或 collectionView 的框架问题,那么您需要为 collectionView 设置适当的高度。
或
试试这个
override func viewDidLoad()
super.viewDidLoad()
navigationItem.title = "test"
setupViews()
collectionView.backgroundColor = .white
self.collectionView.register(UICollectionViewCell.self, forCellWithReuseIdentifier: reuseIdentifier)
// remove this line if you not use xib
【讨论】:
你是对的@KKRocks 我只是增加了我的收藏视图高度并出现了单元格。谢谢大家:) 欢迎@zorobabel【参考方案2】:我检查了你的代码,它工作正常。因为你使用的是 swift 3,所以你必须使用 xCode 8+。使用 XCODE 8 运行它,因为语法适用于 swift 3,你会得到结果。
【讨论】:
以上是关于未调用 UICollectionView cellForItem的主要内容,如果未能解决你的问题,请参考以下文章
调用 ViewDidLoad 但未调用 ViewWillAppear
iOS 8 上的 UICollectionView self-sizing-cell 将与 UIDynamic flowLayout 和重复调用 _updateVisibleCellsNow 一起崩溃
如何从 UICollectionViewCell 访问 UICollectionView 中 Cell 的 indexPath
UITableViewCell中嵌套UICollectionView
未调用 UIcollectionView 的 didDeselectItemAt 但调用了 didSelectItemAt?