cellForItemAt没有在collectionView中调用 [英] cellForItemAt is not calling in collectionView

查看:179
本文介绍了cellForItemAt没有在collectionView中调用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个inputView,其中将显示collectionView.我为该inputView使用了自动布局.运行应用程序时,将调用numberOfItemsInSection,但不调用cellForItemAt.因此没有显示任何单元格.使用约束我做错了什么吗? 我还创建了项目 https://drive.google.com/file/d/0B5UHWsK1E6dSRDA5bmtSY2ZZbGs/view

I have a inputView where a collectionView will be displayed. I used auto layout for that inputView. When running the app numberOfItemsInSection is called but cellForItemAt is not called. So no cell is displaying. Did I do anything wrong using constraint? I've also created project https://drive.google.com/file/d/0B5UHWsK1E6dSRDA5bmtSY2ZZbGs/view

ViewController.swift

ViewController.swift

override func viewDidLoad() {
    super.viewDidLoad()
    textField.inputView = InputPhotoView(frame: CGRect(x: 0, y: 0, width: UIScreen.main.bounds.width, height: 265))
    textField.becomeFirstResponder()
}

InputPhotoView.swift

InputPhotoView.swift

class InputPhotoView: UIView {
let CellIdentifier = "Cell"
override init(frame: CGRect) {
    super.init(frame: frame)
    collectionView.dataSource = self
    collectionView.register(CustomCell.self, forCellWithReuseIdentifier: CellIdentifier)
    setupViews()
}
required init?(coder aDecoder: NSCoder) {
    super.init(coder: aDecoder)
    fatalError("Not yet implented")
}
func setupViews() {
    self.backgroundColor = UIColor.brown
    self.addSubview(collectionView)
    setupConstraints()
}
func setupConstraints() {
    NSLayoutConstraint.activate([
        collectionView.leadingAnchor.constraint(equalTo: self.trailingAnchor, constant: 50),
        collectionView.trailingAnchor.constraint(equalTo: self.trailingAnchor, constant: 0),
        collectionView.topAnchor.constraint(equalTo: self.topAnchor, constant: 0),
        collectionView.bottomAnchor.constraint(equalTo: self.bottomAnchor, constant: 0)
        ])
}
public lazy var collectionView: UICollectionView = {
    let layout = UICollectionViewFlowLayout()
    layout.scrollDirection = .horizontal
    layout.itemSize = CGSize(width: 100, height: 100)
    layout.minimumInteritemSpacing = 0
    layout.sectionInset = UIEdgeInsets(top: 0, left: 5, bottom: 0, right: 5)
    let collectionView = UICollectionView(frame: CGRect.zero, collectionViewLayout: layout)
    collectionView.translatesAutoresizingMaskIntoConstraints = false
    collectionView.contentInset = UIEdgeInsets(top: 0, left: 5, bottom: 0, right: 5)
    return collectionView
}()

} 数据源

extension InputPhotoView : UICollectionViewDataSource {
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    print("number of items")
    return 10
}
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: CellIdentifier, for: indexPath) as! CustomCell
    return cell
}

}

推荐答案

您的代码具有约束冲突,因此collectionView不可见.尝试更改此行:

Your code has constraint conflicts so the collectionView is not visible. Try changing this line:

collectionView.leadingAnchor.constraint(equalTo: self.trailingAnchor, constant: 50)

对于这样的事情:

collectionView.leadingAnchor.constraint(equalTo: self.leadingAnchor, constant: 50)

这篇关于cellForItemAt没有在collectionView中调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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