自定义 uitableViewcell 内部:UILabel 背景超出文本长度(以编程方式)

Inside custom tableView cell: UILabel's background is beyond the text length (programmatically)

我创建了一个带有自定义单元格的 table 视图,其中以编程方式包含两个标签。而且我无法让左标签的文本与其背景对齐。可能需要你们的帮助。

为了缩小问题的范围,我创建了一个小项目来做一些实验:

里面 ViewController:

[警告] 仅警告一次:检测到约束含糊地建议 table 视图单元格内容视图的高度为零的情况。我们正在考虑无意折叠并使用标准高度。"

tableView.rowHeight = UITableView.automaticDimension
tableView.estimatedRowHeight = 40

ViewController

import UIKit

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
    var tableView = UITableView()

    override func viewDidLoad() {
        super.viewDidLoad()
        
        let uiView = UIView()
        uiView.backgroundColor = .systemBackground
        view = uiView
        
        tableView.delegate = self
        tableView.dataSource = self
        tableView.register(CustomCell.self, forCellReuseIdentifier: "countryDetail")
        tableView.translatesAutoresizingMaskIntoConstraints = false
        tableView.rowHeight = 40
        view.addSubview(tableView)
        
        NSLayoutConstraint.activate([
            tableView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor),
            tableView.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor),
            tableView.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor),
            tableView.bottomAnchor.constraint(equalTo: view.safeAreaLayoutGuide.bottomAnchor),
        ])
    }
    
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return 8
    }
    
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        guard let cell = tableView.dequeueReusableCell(withIdentifier: "countryDetail", for: indexPath) as? CustomCell else {
            fatalError("Unable to dequeue CustomCell")
        }
        
        cell.name.text = "Country: "
        cell.value.text = "US"
        
        return cell
    }
}

自定义单元格

import UIKit

class CustomCell: UITableViewCell {
    var name = UILabel()
    var value = UILabel()
    
    override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
        super.init(style: style, reuseIdentifier: "countryDetail")
        
        name.translatesAutoresizingMaskIntoConstraints = false
        name.numberOfLines = 0
        name.textAlignment = .left
        name.layer.masksToBounds = true
        name.layer.cornerRadius = 5
        name.backgroundColor = .systemGreen
        name.font = UIFont(name: "Helvetica Neue", size: 22)
        contentView.addSubview(name)
        
        value.translatesAutoresizingMaskIntoConstraints = false
        value.numberOfLines = 0
        value.textAlignment = .left
        value.font = UIFont(name: "Helvetica Neue", size: 18)
        contentView.addSubview(value)
        
        NSLayoutConstraint.activate([
            name.leadingAnchor.constraint(equalTo: contentView.leadingAnchor, constant: 10),
            name.centerYAnchor.constraint(equalTo: contentView.centerYAnchor),
            
            value.leadingAnchor.constraint(equalTo: name.trailingAnchor, constant: 10),
            value.centerYAnchor.constraint(equalTo: contentView.centerYAnchor),
            value.trailingAnchor.constraint(equalTo: contentView.trailingAnchor, constant: -10)
        ])
    }
    
    required init?(coder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
}

哦,这是一个愚蠢的错误。我应该从 CustomCell 中删除此行 value.trailingAnchor.constraint(equalTo: contentView.trailingAnchor, constant: -10) 以删除右标签的尾随锚点约束,因为我希望右标签与左标签左对齐。

这次使用 tableView.rowHeight = 40,应用运行良好。