如何以编程方式更改 detailTextLabel 高度

How to change detailTextLabel height programmatically

我将一个数组编入 tableView。当单元格使用多行 detailTextLabel 时,行之间的 space 很小。我想知道是否有任何方法可以通过编程方式增加这个高度?这是我用于数组的示例代码。

cell.textLabel?.text = self.filtered[indexPath.row].coptic
cell.detailTextLabel?.text = self.filtered[indexPath.row].english
cell.textLabel?.font = UIFont(name:"CS Avva Shenouda", size:30)
cell.detailTextLabel?.font = UIFont(name: "Constantia", size:25)
cell.textLabel?.numberOfLines = 0
cell.detailTextLabel?.numberOfLines = 0
cell.detailTextLabel?.textColor = UIColor.darkGray

return cell

我只是在表达我的逻辑,而不是整个代码。 您可以通过以下代码获取字符串的高度

func height(withConstrainedWidth width: CGFloat, font: UIFont) -> CGFloat {
        let constraintRect = CGSize(width: width, height: .greatestFiniteMagnitude)
        let boundingBox = self.boundingRect(with: constraintRect, options: .usesLineFragmentOrigin, attributes: [NSFontAttributeName: font], context: nil)

        return ceil(boundingBox.height)
    }

更改cellForRowAtIndexPath方法

cell.detailTextLabel?.numberOfLines = 0 
let height = height(withConstrainedWidth:200, font:YourFont) // change width and font as per your requirement 
cell.detailTextLabel?.frame = CGRect(x: cell.detailTextLabel?.frame.origin.x, y: cell.detailTextLabel?.frame.origin.y, width: cell.detailTextLabel?.frame.size.width, height: height)

您可以根据 detailTextLabel 高度管理单元格高度

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat
{
   return 50 // You should put your code or logic that dynamic height based on heigh of label.
}

table 视图需要有一个 estimatedRowHeight 和 tableView 高度作为 UITableViewAutomaticDimension。