Swift 5并未以编程方式声明UICollectionView

问题描述 投票:0回答:1

我正在以编程方式声明UICollectionView及其对应的单元格。写出原始设置后,我发现无法配置单元格的大小。不管我放置逻辑还是尺寸,单元(红色)似乎都是默认的正方形(小)尺寸。屏幕截图在这篇文章的结尾。

供参考,代码如下:

setupView(){}
    // collection view for screens
    let screenHeight : CGFloat = CGFloat(height/6)
    let screenWidth = screenHeight * ( width/height )
    let offset_top_screens : CGFloat = height - rowHeight - screenHeight

    let screenRow = UICollectionView(
          frame: CGRect(x: 0, y: offset_top_screens, width: width, height: screenHeight)
        , collectionViewLayout: UICollectionViewFlowLayout()
    )

    //screenRow.translatesAutoresizingMaskIntoConstraints = false

    screenRow.backgroundColor = Color.grayTertiary

    // set up collection view delegates
    screenRow.dataSource = self
    screenRow.alwaysBounceHorizontal = true

    screenRow.register(ScreenItem.self, forCellWithReuseIdentifier: ScreenItem.identifier) // register w/ storyboard

    self.view.addSubview(screenRow)
    self.screenRow = screenRow
    self.view.bringSubviewToFront(screenRow)
    self.screenHeight = screenHeight
    self.screenWidth  = screenWidth
    // end collection view screen

}


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

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {

    let row = indexPath.row
    let user = self.dataSource[row]
    let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "ScreenItem", for: indexPath) as! ScreenItem

    /*
     cell.uuid        = user.uuid
     cell.delegate    = self
     cell.mediaSource = ... what is the pipe here?
     */
    return cell
}


func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {        

    return CGSize(width: 45, height:40)  // changing these values do not change anything
    // return CGSize(width: 90, height: collectionView.bounds.height)   <- this does nothing


}


func collectionView(_ collectionView: UICollectionView,
                    layout collectionViewLayout: UICollectionViewLayout,
                    insetForSectionAt section: Int) -> UIEdgeInsets {
    return UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0) //.zero
}

func collectionView(_ collectionView: UICollectionView,
                    layout collectionViewLayout: UICollectionViewLayout,
                    minimumInteritemSpacingForSectionAt section: Int) -> CGFloat {
    return 0
}

func collectionView(_ collectionView: UICollectionView,
                    layout collectionViewLayout: UICollectionViewLayout,
                    minimumLineSpacingForSectionAt section: Int) -> CGFloat {
    return 0
}



// somewhere in a different file


/*
 @Use: display user's screen
 */
class ScreenItem: UICollectionViewCell {

    static var identifier: String = "ScreenItem"

    weak var textLabel: UILabel!

    override init(frame: CGRect) {
        super.init(frame: frame)
        self.backgroundColor = Color.red
    }

    required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)
    }

    override func prepareForReuse() {
        super.prepareForReuse()
        self.reset()
    }

    func reset() {
        // @TOOD: reset things here
    }
}

__更新__父类定义

class CallController:
  UIViewController
, UICollectionViewDataSource
, UICollectionViewDelegate

enter image description here

ios swift uicollectionview uicollectionviewcell uicollectionviewlayout
1个回答
1
投票

您似乎没有设置代表。如果您使用的是UICollectionViewFlowLayout,则您的UIViewController应该实现UICollectionViewDelegateFlowLayout协议。

UICollectionViewDelegateFlowLayout

您的UIViewController实例是否已实现此协议?您是否设置了delegate属性?

© www.soinside.com 2019 - 2024. All rights reserved.