gpt4 book ai didi

ios - UICollectionview 单元格大小

转载 作者:行者123 更新时间:2023-11-30 11:46:40 24 4
gpt4 key购买 nike

我希望能够拉伸(stretch)单元格整个窗口宽度,但保留实际单元格高度。有没有更好的方法来执行此操作,然后实例化 NIB 对象并获取高度。该系列最终将包含约 20 多种不同类型的电池设计。

  func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
let collectionViewSize = collectionView.frame.size.width
//let sizingCell = UINib(nibName: "CustomCell", bundle: nil).instantiate(withOwner: nil, options: nil).first as! CustomCell

//return CGSize(width: collectionViewSize, height:sizingCell.frame.height)
return CGSize(width: collectionViewSize, height: 70)
}

最佳答案

这是标题

您必须实现UICollectionViewDelegateFlowLayout

然后您可以编辑单元格大小

ps:更好用

collectionView.bounds.size.width

获取collectionView的宽度

关于ios - UICollectionview 单元格大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48751367/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com