Swift 4-类的多重继承';NSObject';和';UICollectionViewFlowLayout&x27;

Swift 4-类的多重继承';NSObject';和';UICollectionViewFlowLayout&x27;,swift,uicollectionview,uicollectionviewcell,swift4,Swift,Uicollectionview,Uicollectionviewcell,Swift4,我试图通过编程将收集单元格的大小设置为帧的宽度,但是,当我运行应用程序时,单元格大小不会改变。这是调用Swift 4和Xcode 9的正确函数吗 import UIKit class SettingsLauncher: NSObject, UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewFlowLayout { let blackView = UIView() let coll

我试图通过编程将收集单元格的大小设置为帧的宽度,但是,当我运行应用程序时,单元格大小不会改变。这是调用Swift 4和Xcode 9的正确函数吗

import UIKit

class SettingsLauncher: NSObject, UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewFlowLayout {    
    let blackView = UIView()

    let collectionView: UICollectionView = {
        let layout = UICollectionViewFlowLayout()
        let cv = UICollectionView(frame: .zero, collectionViewLayout: layout)
        cv.backgroundColor = UIColor.white
        return cv
    }()

    let cellID = "cell"

    @objc func showMenu() {
        // Show menu

        if let window = UIApplication.shared.keyWindow { // Get the size of the entire window

            blackView.backgroundColor = UIColor(white: 0, alpha: 0.5)

            let height: CGFloat = 200
            let y = window.frame.height - height // The y value to appear at the bottom of the screen
            collectionView.frame = CGRect(x: 0, y: window.frame.height, width: window.frame.width, height: height)

            // Add gesture recognizer on black view to dismiss menu

            blackView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(handleDismiss)))

            window.addSubview(blackView)
            window.addSubview(collectionView)

            blackView.frame = window.frame
            blackView.alpha = 0

            // Slow the animation down towards the end (curveEasOut)
            UIView.animate(withDuration: 1, delay: 0, usingSpringWithDamping: 1, initialSpringVelocity: 1, options: .curveEaseOut, animations: {
                // Animate black view
                self.blackView.alpha = 1

                // Animate collection view
                self.collectionView.frame = CGRect(x: 0, y: y, width: self.collectionView.frame.width, height: height)
            }, completion: nil)
        }
    }

    @objc func handleDismiss() {
        // Dimisses menu view

        UIView.animate(withDuration: 0.5) {
            self.blackView.alpha = 0

            if let window = UIApplication.shared.keyWindow {

                self.collectionView.frame = CGRect(x: 0, y: window.frame.height, width: self.collectionView.frame.width, height: self.collectionView.frame.height)
            }
        }
    }

    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return 6
    }

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: cellID, for: indexPath)
        return cell
    }

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

    override init() {
        super.init()

        collectionView.delegate = self
        collectionView.dataSource = self

        collectionView.register(MenuCell.self, forCellWithReuseIdentifier: cellID)

    }
}
编辑:

此表视图将从页面底部设置动画,并显示集合视图,该视图将从使用弹出菜单的视图控制器调用

我现在得到错误:

类的多重继承
'NSObject'
'UICollectionViewFlowLayout'


UICollectionViewFlowLayout
不是协议,而是类。您需要使用
UICollectionViewDelegateFlowLayout
而不是
UICollectionViewFlowLayout

改变

class SettingsLauncher: NSObject, UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewFlowLayout


这个方法被调用了吗?您是否设置了相应的委托?我已更新以显示我的所有代码
class SettingsLauncher: NSObject, UICollectionViewDelegate, UICollectionViewDataSource, UICollectionViewDelegateFlowLayout