调整表格视图单元格高度以适合按钮

时间:2017-12-20 02:24:15

标签: ios swift xcode tableview

我试图让我的表格视图单元格看起来像主故事板上的单元格。我在它下面有一个标签,两个按钮。我不能让单元格只显示标签的一行。我已经能够用标签增加高度但不适合所有东西。我希望它看起来像故事板单元格,但它看起来像这样。

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

您是否尝试过使用这些功能我不这么认为,只需使用UITableView提供的这些默认代理并查看它是否对您有所帮助

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        return UITableViewAutomaticDimension
    }

    func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
        return UITableViewAutomaticDimension
    }

其次,如果您正在使用Storyboard中的tableView

从自定义

中取消行高

enter image description here