简体   繁体   English

UITableViewCell的内容视图高度未针对动态字体(NSLayoutConstraints)进行调整

[英]UITableViewCell's content view height is not adjusting for the dynamic font (NSLayoutConstraints)

I am having difficulties adjusting table view cells to automatically resize for dynamic type fonts. 我在调整表格视图单元格以自动调整动态类型字体的大小时遇到​​困难。 Note that I am using layout constraints in code, not in storyboard. 请注意,我在代码中而不是在故事板中使用布局约束。

Here is my table view setup code: 这是我的表格视图设置代码:

tableView = UITableView(frame: .zero, style: .grouped)
tableView.register(ChatAnalyticsCell.self, forCellReuseIdentifier: ChatAnalyticsCell.reuseIdentifier)
tableView.rowHeight = UITableView.automaticDimension
tableView.estimatedRowHeight = UITableView.automaticDimension

Here are my 2 labels and image view setup in ChatAnalyticsCell class 这是我在ChatAnalyticsCell类中的2个标签和图像视图设置

private var iconImageView: UIImageView = {
    let imageView = UIImageView(frame: CGRect(origin: .zero,
                                              size: CGSize(width: 20, height: 20)))
    imageView.contentMode = .scaleAspectFill
    imageView.clipsToBounds = true
    imageView.translatesAutoresizingMaskIntoConstraints = false
    imageView.tintColor = UIColor(red: 0.25, green: 0.3, blue: 0.72, alpha: 1)
    return imageView
}()

private var segmentLabel: UILabel = {
    let label = UILabel()
    label.translatesAutoresizingMaskIntoConstraints = false
    label.numberOfLines = 0
    label.textColor = UIColor.gray
    label.font = UIFont.preferredFont(forTextStyle: .footnote)
    label.adjustsFontForContentSizeCategory = true

    return label
}()

private var segmentDataLabel: UILabel = {
    let label = UILabel()
    label.translatesAutoresizingMaskIntoConstraints = false
    label.numberOfLines = 0
    label.textColor = UIColor(red: 0.13, green: 0.15, blue: 0.19, alpha: 0.9)
    label.font = UIFont.preferredFont(forTextStyle: .body)
    label.adjustsFontForContentSizeCategory = true
    return label
}()

Here is the function where I add subviews and setup constraints, to resize properly for the dynamic-type font. 这是我在其中添加子视图和设置约束的函数,用于为动态类型字体正确调整大小。

override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
    super.init(style: style, reuseIdentifier: reuseIdentifier)

    setupSubviews()
}


private func setupSubviews() {
    addSubview(iconImageView)
    iconImageView.leadingAnchor.constraint(equalTo: contentView.leadingAnchor, constant: 15.0).isActive = true
    iconImageView.centerYAnchor.constraint(equalTo: contentView.centerYAnchor).isActive = true
    iconImageView.widthAnchor.constraint(equalToConstant: 20.0).isActive = true
    iconImageView.heightAnchor.constraint(equalToConstant: 20.0).isActive = true

    // Analytics segment label
    addSubview(segmentLabel)
    segmentLabel.leadingAnchor.constraint(equalTo: iconImageView.trailingAnchor, constant: 20).isActive = true
    segmentLabel.topAnchor.constraint(equalTo: contentView.topAnchor, constant: 20).isActive = true
    segmentLabel.trailingAnchor.constraint(equalTo: contentView.trailingAnchor, constant: -20).isActive = true

    // Segment data label
    addSubview(segmentDataLabel)
    segmentDataLabel.leadingAnchor.constraint(equalTo: segmentLabel.leadingAnchor).isActive = true
    segmentDataLabel.trailingAnchor.constraint(equalTo: segmentLabel.trailingAnchor).isActive = true
    segmentDataLabel.topAnchor.constraint(equalTo: segmentLabel.bottomAnchor, constant: 5).isActive = true
    segmentDataLabel.bottomAnchor.constraint(equalTo: contentView.bottomAnchor, constant: 20).isActive = true

    contentView.heightAnchor.constraint(greaterThanOrEqualToConstant: 80).isActive = true
}

Note that when I run the code, there are no constraints breaking, but the layout is not properly updated. 请注意,当我运行代码时,没有打破任何约束,但是布局没有正确更新。 Please see the screenshot: 请看截图:

在此处输入图片说明

Add all the views to the contentView ! 将所有视图添加到contentView

contentView.addSubview(yourView)

One more thing - you might want to change (why?) this constraint, 还有一件事-您可能想更改(为什么?)此约束,

segmentDataLabel.bottomAnchor.constraint(equalTo: contentView.bottomAnchor, constant: 20).isActive = true

to, 至,

segmentDataLabel.bottomAnchor.constraint(equalTo: contentView.bottomAnchor, constant: -20).isActive = true

The rest of the constraints look ok to calculate the height of the contentView . 其余的约束看起来可以计算contentView的高度。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM