UITableView.automaticDimension不起作用tableView detailTextLabel

时间:2018-12-02 15:33:05

标签: ios swift uitableview

我正在以编程方式实现UITableViewController(没有情节提要!)。

我尝试了许多可能的方法来实现TableViewCell的detailTextLabel的自动大小调整,但是没有一种起作用。我不知道我缺少什么或者它是否是错误!这是我尝试过的:

//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可能有多行。 请让我知道我在这里想念的是什么。在互联网上阅读后,我发现是添加自定义约束,但我认为这也不行。

2 个答案:

答案 0 :(得分:1)

您必须为此cell?.detailTextLabel

添加约束

cellForRowAt

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!
}

输出

enter image description here

答案 1 :(得分:0)

如果将估计的行高设置为实际值,则应该可以使用。您不能将两者都设置为.automaticDimension