我正在以编程方式实现UITableViewController(没有故事板!).
我尝试了许多可能的方法来实现TableViewCelldetailTextLabel的自动调整大小,但是没有一种方法起作用。我不知道我缺了什么,也不知道是不是虫子!我试过的是:

//Class - tableViewContoller
override func viewDidLoad() {
    super.viewDidLoad()
    setUpTableView()
}


func setUpTableView() {
    tableView.tableFooterView = UIView(frame: CGRect.zero)
    tableView.separatorColor = UIColor(red: 240.0/255.0, green: 240.0/255.0, blue: 240.0/255.0, alpha: 0.8)
    tableView.contentInset = UIEdgeInsets(top: 10.0, left: 0.0, bottom: 10.0, right: 0.0)
    tableView.dataSource = self
    tableView.delegate = self
    tableView.rowHeight = UITableView.automaticDimension
    tableView.estimatedRowHeight = UITableView.automaticDimension //Tried 44 -> Not working either
    tableView.reloadData()
}
//cellForRowAt IndexPath
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    var cell = tableView.dequeueReusableCell(withIdentifier: cellId)
    if cell == nil {
        cell = UITableViewCell(style: UITableViewCell.CellStyle.value1, reuseIdentifier: cellId)
    }
    cell?.detailTextLabel?.numberOfLines = 0
    cell?.detailTextLabel?.lineBreakMode = .byWordWrapping
    cell?.selectionStyle = .none
    switch indexPath.row {
    case 0:
        cell?.textLabel?.text = "Case 1"
        cell?.detailTextLabel?.text = caseDetails?.details
    case 1:
        cell?.textLabel?.text = "Case 2"
        cell?.detailTextLabel?.text = caseDetails?.bio
    default:break
    }
    return cell!
}
override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
    return UITableView.automaticDimension
}
override func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
    return UITableView.automaticDimension
}

我有2-3个单元格,其中detailTextLabel可能有多行。
请让我知道我错过了什么。我在网上看到的是添加自定义约束,但我认为这也行不通。

最佳答案

您必须为cell?.detailTextLabel
牢房

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    var cell = tableView.dequeueReusableCell(withIdentifier: cellId)
    if cell == nil {
        cell = UITableViewCell(style: UITableViewCellStyle.value1, reuseIdentifier: cellId)
    }
    cell?.detailTextLabel?.numberOfLines = 0
    cell?.detailTextLabel?.lineBreakMode = .byWordWrapping
    cell?.selectionStyle = .none

    cell?.detailTextLabel?.layer.backgroundColor = UIColor.yellow.cgColor
    // ALLOW MANUAL CONSTRAINTS
    cell?.detailTextLabel?.translatesAutoresizingMaskIntoConstraints = false
    // TOP +15, BOTTOM -15, RIGHT -15
    cell?.detailTextLabel?.topAnchor.constraint(equalTo: (cell?.contentView.topAnchor)!, constant: 15).isActive = true
    cell?.detailTextLabel?.bottomAnchor.constraint(equalTo: (cell?.contentView.bottomAnchor)!, constant: -15).isActive = true
    cell?.detailTextLabel?.rightAnchor.constraint(equalTo: (cell?.contentView.rightAnchor)!, constant: -10).isActive = true

    switch indexPath.row {
    case 0:
        cell?.textLabel?.text = "Case 1"
        cell?.detailTextLabel?.text = "hi\nhello\nwelcome\nhow are you"
    case 1:
        cell?.textLabel?.text = "Case 2"
        cell?.detailTextLabel?.text = "caseDetails?.bio\n\n\n123456"
    default:break
    }
    return cell!
}

输出
ios - UITableView.automaticDimension不起作用tableView detailTextLabel-LMLPHP

关于ios - UITableView.automaticDimension不起作用tableView detailTextLabel,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53581758/

10-11 06:59