UICollectionView未显示以查看

时间:2018-11-23 21:28:51

标签: ios swift uicollectionview constraints nslayoutconstraint

我已经在这个问题上停留了近一个星期。我什至恢复了我的代码,并编写了与某些教程相同的代码,但是我似乎无法终生将UICollectionView显示在视图中。我的视图控制器中还有许多其他代码正在执行,因此我将显示与UICollectionView相关的代码。这是我到目前为止的内容:

视图控制器:

class UARTModuleViewController: UIViewController, CBPeripheralManagerDelegate, UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {
    override func viewDidLoad() {
        super.viewDidLoad()
        setupMenuBar()
    }

    let menuBar: MenuBar = {
        let mb = MenuBar()
        return mb
    }()

    private func setupMenuBar() {
        view.addSubview(menuBar)
        let horizontalConstraint = NSLayoutConstraint.constraints(withVisualFormat: "H:|[v0]|", options: NSLayoutFormatOptions(), metrics: nil, views: ["v0":menuBar])
        let verticalConstraint = NSLayoutConstraint.constraints(withVisualFormat: "V:|[v0(100)]|", options: NSLayoutFormatOptions(), metrics: nil, views: ["v0":menuBar])
        view.addConstraints(horizontalConstraint)
        view.addConstraints(verticalConstraint)
    }
}

MenuBar.swift:

class MenuBar : UIView, UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout {

    lazy var collectionView : UICollectionView = {
        let layout = UICollectionViewFlowLayout()
        let cv = UICollectionView(frame: .zero, collectionViewLayout: layout)
        cv.backgroundColor = UIColor.red
        cv.dataSource = self
        cv.delegate = self
        return cv
    }()

    override init(frame: CGRect) {
        super.init(frame: frame)

        self.addSubview(collectionView)
        collectionView.register(UICollectionViewCell.self, forCellWithReuseIdentifier: "MenuCell")

        //took out constraints here just to make the warning mentioned below easier to follow.
    }

我确实实现了协议,但是我并没有添加它们只是为了节省要发布的代码量。在UARTModuleViewController加载后,我确实收到了此警告:

  

[LayoutConstraints]无法同时满足约束条件。

我已经尝试通过它进行推理,但似乎无法解决。我也有一个单元格类,但是认为没有必要包含它,因为我无法显示UICollectionView。我可能要添加的唯一一件事是,在故事板中添加的视图中间有一个UIImageView,并像下面这样施加了约束:enter image description here

有人对我可能做错了什么建议吗?预先感谢您可以提供的任何帮助或建议。

1 个答案:

答案 0 :(得分:1)

根据评论:

  • 首先,每次在代码中使用约束时,都必须将translatesAutoresizingMaskIntoConstraints = false设置为要添加约束的视图。
  • 您不是要让集合视图填充整个MenuBar空间。
  • MenuBar中应用于setupMenuBar的约束不会使您确定视图的大小和位置。

您应该应用以下更改来告知MenuBar填充宽度,60 pt高度并放置在屏幕底部:

private func setupMenuBar() {
    view.addSubview(menuBar)
    menuBar.translatesAutoresizingMaskIntoConstraints = false // this will make your constraint working
    menuBar.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor).isActive = true // every constraint must be enabled.
    menuBar.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor).isActive = true
    menuBar.bottomAnchor.constraint(equalTo: view.safeAreaLayoutGuide.bottomAnchor).isActive = true
    menuBar.heightAnchor.constraint(equalToConstant: 60).isActive = true
}

要告诉集合视图填充整个MenuBar视图,请使用MenuBar init(frame:)方法:

override init(frame: CGRect) {
    super.init(frame: frame)

    self.addSubview(collectionView)
    collectionView.register(UICollectionViewCell.self, forCellWithReuseIdentifier: "MenuCell")

    collectionView.translatesAutoresizingMaskIntoConstraints = false        
    collectionView.topAnchor.constraint(equalTo: topAnchor).isActive = true
    collectionView.bottomAnchor.constraint(equalTo: bottomAnchor).isActive = true
    collectionView.leadingAnchor.constraint(equalTo: leadingAnchor).isActive = true
    collectionView.trailingAnchor.constraint(equalTo: trailingAnchor).isActive = true

    //took out constraints here just to make the warning mentioned below easier to follow.
}

正如您在我的代码中看到的那样,我通常使用“锚定”方法来施加约束,因为比视觉格式更容易。