gpt4 book ai didi

ios - 运行时的单元格高度与 Storyboard XCode9 中的单元格高度不同

转载 作者:行者123 更新时间:2023-11-30 12:11:07 25 4
gpt4 key购买 nike

enter image description here

我已经为一个单元格创建了子类,并正在 Storyboard中设置所有布局内容。在运行时,单元格比我在 Storyboard中设置的单元格要短得多。

我在模拟器中得到了不同的背景颜色和高度。

class FeedCell: UITableViewCell {
@IBOutlet weak var profileImage: UIImageView!
@IBOutlet weak var emailLabel: UILabel!
@IBOutlet weak var messageLabel: UILabel!

func configureCell(profileImage : UIImage, email : String, content : String) {
self.profileImage.image = profileImage
self.emailLabel.text = email
self.messageLabel.text = content
}
override func awakeFromNib() {
super.awakeFromNib()
}
}

这是我的子类中唯一的代码。

有什么想法吗?

最佳答案

为表格单元格设置适当的约束,并使用estimatedRowHeightrowHeight设置表格 View 动态高度

例如

    tableView.estimatedRowHeight = 120
tableView.rowHeight = UITableViewAutomaticDimension

关于ios - 运行时的单元格高度与 Storyboard XCode9 中的单元格高度不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46047214/

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