UITableViewAutomaticDimension多次更改

时间:2018-04-27 21:02:25

标签: swift uitableview constraints programmatically

我有一个使用iOS默认动态字体的项目。因此,我正在使用UITableViewAutomaticDimension作为高度。我正在以编程方式执行所有操作,因此我为自定义单元格设置了约束。

我对约束的理解和UITableViewCell s

根据我对约束的理解,当您将它们应用于superView时,您设置为受约束的属性将根据superView的大小强制移动。但是,如果您将约束设置为contentView的{​​{1}},那么您设置约束的属性将强制UITableViewCell更改其高度,宽度,分机。

CustomTableViewCell

UITableViewCell

输出

一切都应该完美无缺,但我没有得到desired height

First身高,一秒后身高变为this,最终所需身高为this。我是否设置了约束错误,或者这只是一个普通的iOS错误?

2 个答案:

答案 0 :(得分:1)

问题结果证明是我在宣布内部约束的功能。我不需要使用draw(_ rect: CGRect)覆盖功能,而是需要使用init(style: UITableViewCellStyle, reuseIdentifier: String?)覆盖功能。我能想到的唯一原因是因为绘制函数发生在init之后和边缘设置之后。因此,约束没有时间更新。

以下是更新的draw(_ rect: CGRect)init(style: UITableViewCellStyle, reuseIdentifier: String?)功能:

override func init(style: UITableViewCellStyle, reuseIdentifier: String?) {
    super.init(style: style, reuseIdentifier: reuseIdentifier)

    let margins = contentView.layoutMarginsGuide

    contentView.addSubview(logoImageView)
    contentView.addSubview(stackView)

    stackView.addArrangedSubview(storeLabel)
    stackView.addArrangedSubview(priceStackView)

    priceStackView.addArrangedSubview(loadingIndicator)
    priceStackView.addArrangedSubview(priceLabel)

    logoImageView.snp.makeConstraints { (make) in
        make.left.equalTo(layoutMarginsGuide).offset(layoutMargins.left * 0.5)
        make.centerY.height.equalTo(layoutMarginsGuide)
        make.width.equalTo(logoImageView.snp.height)
    }

    stackView.snp.makeConstraints { (make) in
        make.left.equalTo(logoImageView.snp.right).offset(layoutMargins.left * 1.5)
        make.right.centerY.equalTo(margins)
        make.height.equalTo(margins).offset(-15)
    }
}

required init?(coder aDecoder: NSCoder) {
    fatalError("init(coder:) has not been implemented")
}

答案 1 :(得分:0)

ContentView必须从子视图中知道它的大小,反之亦然

删除logoImageView个约束,然后添加这些约束,

logoImageView.topAnchor.constraint(equalTo: self.contentView.topAnchor).isActive = true

logoImageView.bottomAnchor.constraint(equalTo: self.contentView.bottomAnchor).isActive = true

logoImageView.leadingAnchor.constraint(equalTo: self.contentView.leadingAnchor, constant: layoutMargins.left * 0.5).isActive = true

logoImageView.heightAnchor.constraint(equalToConstant: 100 ).isActive = true

logoImageView.widthAnchor.constraint(equalToConstant: 100 ).isActive = true