首页 > 解决方案 > 动态调整集合视图单元格的大小

问题描述

我有这个更新的旧代码示例,但我仍然是新手,不知道如何解决这个错误:

在包含集合视图的类中:

var array = ["Just testing this out"]

现在在 UICollectionViewDelegateFlowLayout 扩展中:

private func estimateFrameForText(text: String) -> CGRect {
    //we make the height arbitrarily large so we don't undershoot height in calculation
    let height: CGFloat = 1000

    let size = CGSize(width: 398, height: height)
    let options = NSStringDrawingOptions.usesFontLeading.union(.usesLineFragmentOrigin)
    let attributes = [NSAttributedString.Key.font: UIFont.systemFont(ofSize: 17, weight: UIFont.Weight.light)]

    return NSString(string: text).boundingRect(with: size, options: options, attributes: attributes, context: nil)
}

还:

private func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
    var height: CGFloat = 295
    //we are just measuring height so we add a padding constant to give the label some room to breathe!
     var padding: CGFloat = 14
    //estimate each cell's height
    if let text = array[indexPath.item].text {
          height = estimateFrameForText(text).height + padding
     }
     return CGSize(width: 398, height: height)    }

这是我得到错误的地方:

if let text = array[indexPath.item].text

这是来自集合视图单元类的 UILabel 我不知道在哪里实现:

@IBOutlet weak var TextPosted: UILabel!

标签: iosswiftdynamicuicollectionview

解决方案


您的测试阵列需要一些调整。尝试将其声明为可选(因为它可能会与从某处加载的实际数据一起使用)。

var array: [String]? = ["Just testing this out", "Another test"]

然后这个:

override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    return array?.count ?? 0
}

然后在 collecitonView sizeForItemAtIndexPath 函数中更新 if let 语句:

if let text = array?[indexPath.item]{
}

顺便说一句,几天前我写了一个开源扩展来测量字符串大小。

希望这可以帮助。


推荐阅读