如何根据其内容调整UIStackView的大小?

时间:2016-04-13 07:20:38

标签: ios uitableview swift2 height uistackview

我希望有一个类似于<Table> HTML标记的行为,在这种意义上,框架的大小根据其内容而定。

在我的上下文中,我使用UIStackView作为UITableViewCell的内容视图。由于单元格中的项目是各种信息,因此单元格的最终高度应该是可变的。

我的策略是以编程方式将单元格构建为带有.Vertical轴的UIStackView,如下面的代码片段所示:

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath)

    let sv = UIStackView(frame: tableview.frame)
    sv.axis = .Vertical
    cell.addSubview(sv)
    for i in information {
        let l = UILabel()
        l.text = i
        sv.addSubViewAndArrange(l)
    }

    return cell
}

不幸的是,单元格大小不适应内容,因此我必须自己设置单元格高度,如下所示:

func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
    return cellHeight     // a constant
}

我该如何解决?

2 个答案:

答案 0 :(得分:6)

UIStackView旨在根据内容增加其大小。为了实现这一点,您需要在UIStackViewUITableViewCell之间设置约束。例如,这是约束在界面构建器中的样子:

enter image description here enter image description here

如果您想在代码中设置约束,那也应该有效。

为了证明这将有效,我有cellForRowAt函数。基本上,它会在UILabel内放置一些UIStackView,标签数量取决于行号。

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "TableviewCell", for: indexPath) as! TableviewCell
    for i in 1...indexPath.row + 1 {
        let label = UILabel()
        label.text = "Row \(indexPath.row), Label \(i)"
        cell.stackView.addArrangedSubview(label)
    }
    return cell
}

以下是最终结果:

https://github.com/yzhong52/AutosizeStackview

答案 1 :(得分:0)

我构建了这个示例,希望对您有所帮助,我创建了一个tableView,它使用了一个包含stackView的单元格,并且从nib文件中获取了stackView中加载的视图

https://github.com/Joule87/stackView-within-TableViewCell