gpt4 book ai didi

ios - UICollectionView 单元格个体高度

转载 作者:行者123 更新时间:2023-11-29 02:26:54 27 4
gpt4 key购买 nike

我有一个 UICollextionView,它目前正在计算 UILabel 的高度。每个标签都有自己的高度。我现在想对 Collection View 单元格做同样的事情。我似乎只能将它们全部更改为相同。我应该怎么办?谢谢

func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCellWithReuseIdentifier("Cell", forIndexPath: indexPath) as ChatCellCollectionViewCell


cell.backgroundColor = UIColor.whiteColor()
cell.layer.cornerRadius = 10

cell.textLabel.text = "\(messageArray[indexPath.row])"
cell.nameLabel.text = "\(namesArray[indexPath.row])"


cell.textLabel.numberOfLines = 0
cell.textLabel.lineBreakMode = NSLineBreakMode.ByWordWrapping
frame = cell.textLabel.frame
cell.textLabel.sizeToFit()
frame.size.height = cell.textLabel.frame.size.height
cell.textLabel.frame = frame


return cell
}

最佳答案

如果您使用的是流布局,UICollectionViewDelegateFlowLayout 协议(protocol)有一个名为 collectionView:layout:sizeForItemAtIndexPath: 的函数,它允许您执行此操作。

关于ios - UICollectionView 单元格个体高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27409616/

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