UITableViewCell对齐列以适合内容

问题描述 投票:3回答:2

我正在使用自动布局和原型单元创建一个UITableView。我希望它更像一个Web HTML表。每个单元格有四个“列”,每个列中都有一个标签,see here。最终,每列应调整其宽度到所有其他行的最宽列。这似乎是一个常见的情况,但我无法找到任何有关它的信息。我错过了一些明显的东西吗?

我现在有什么结果:

1|product name|11 xx|22 yy
1|longer product name|11 xxx|22 yy
1|short|1x|22 yy

我想要的是什么:

1|product name       |11 xx |22 yy
1|longer product name|11 xxx|22 yy
1|short              |1x    |22 yy

我希望这有任何意义,否则请告诉我。谢谢!

ios swift uitableview interface-builder
2个回答
2
投票

您可以使用嵌入式UIStackViews构建标签的“网格”

使用“外部”水平堆栈视图来保存4个“内部”堆栈视图,这些视图用作4“列”。

如果内容超出可用区域,则将外部堆栈视图嵌入UIScrollView中。

结果如下:

enter image description here

前两个“列”堆栈视图有.alignment = .leading,第三个和第四个有.alignment = .trailing。如您所见,每个“列”堆栈视图都会拉伸其宽度以适合最宽的标签。

以下是生成该示例的一些代码:

class StackGridViewController: UIViewController {

    var myData = [[String]]()

    override func viewDidLoad() {
        super.viewDidLoad()

        // init 30 rows of data
        for i in 1...30 {
            myData.append(["\(i)", "Product Name", "12 xx", "34 xx"])
        }

        // make a few of the rows different
        for i in [2, 15, 21] {

            // longer "column B"
            myData[i][1] = "Longer Product Name"

            // longer "column C"
            myData[i+2][2] = "1234 xx"

            // longer "column D"
            myData[i+4][3] = "3456 xx"

        }

        // and one row with the longest values
        // longest "column B"
        myData[9][1] = "The Longest Product Name"

        // longest "column C"
        myData[9][2] = "123456 xx"

        // longest "column D"
        myData[9][3] = "345678 xx"


        // create a horizontal stack view
        let outerSV = UIStackView()
        outerSV.translatesAutoresizingMaskIntoConstraints = false
        outerSV.axis = .horizontal
        outerSV.distribution = .fill

        // "column" spacing
        outerSV.spacing = 12

        // add 4 "column" vertical stack views
        for col in 0..<4 {
            let columnSV = UIStackView()
            columnSV.translatesAutoresizingMaskIntoConstraints = false
            columnSV.axis = .vertical

            // align leading for first two columns, trailing for 3rd and 4th
            columnSV.alignment = col < 2 ? .leading : .trailing

            columnSV.distribution = .fill

            // "row" spacing
            columnSV.spacing = 8

            // add a label for each data "row"
            for row in 0..<myData.count {
                let v = UILabel()
                v.backgroundColor = UIColor(white: 0.9, alpha: 1.0)
                v.font = UIFont.systemFont(ofSize: 13.0, weight: .light)
                v.text = myData[row][col]
                columnSV.addArrangedSubview(v)
            }

            // add the "column" stack view to the outer stack view
            outerSV.addArrangedSubview(columnSV)
        }

        // create a scroll view
        let scrollView = UIScrollView()
        scrollView.translatesAutoresizingMaskIntoConstraints = false

        view.addSubview(scrollView)

        // constrain it to all four sides with 20-pt padding on top/bottom, 8-pt padding leading/trailing
        NSLayoutConstraint.activate([
            scrollView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor, constant: 20.0),
            scrollView.bottomAnchor.constraint(equalTo: view.safeAreaLayoutGuide.bottomAnchor, constant: -20.0),
            scrollView.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor, constant: 8.0),
            scrollView.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor, constant: -8.0),
            ])

        // add the outer stack view to the scroll view
        scrollView.addSubview(outerSV)

        // constrain it to all four sides (which will also define .contentSize (the "scrollable area")
        NSLayoutConstraint.activate([
            outerSV.topAnchor.constraint(equalTo: scrollView.topAnchor, constant: 0.0),
            outerSV.bottomAnchor.constraint(equalTo: scrollView.bottomAnchor, constant: 0.0),
            outerSV.leadingAnchor.constraint(equalTo: scrollView.leadingAnchor, constant: 0.0),
            outerSV.trailingAnchor.constraint(equalTo: scrollView.trailingAnchor, constant: 0.0),
            ])

    }

}

0
投票

在iOS上创建二维表总是PiTA。我强烈建议您找到现有的解决方案并为自己节省大量时间。 除非你自己做(也就是学习),否则你需要:

  1. 在背景中的某处预先计算单元格大小,并在任何地方使用它
  2. 或者在行中的第一个单元格上添加宽度约束(大于或等于)。让UIKit为您处理布局。每次UIKit更新单元格的宽度时,检查它是否与约束相同,如果它更大,则需要更新具有新的最大宽度的所有行的约束。

第一种方法是最干净的,可能只是正确的解决方案,但如果您的应用程序可以在开发时间内交换很少的性能,您可以尝试第二种方法。

编辑:我刚检查了你的图像。为什么你在这里需要2d表?

所有你需要的是: |-amount-name-iDunnoWhatIsIt-price-|

哪里: name标签左对齐 iDunnoWhatIsIt标签对齐 priceamount有固定的宽度

现在你需要决定什么是更重要的nameiDunnoWhatIsIt。并基于它更新他们的compression resistance,所以重要的一个将不会被修剪(我认为它将是iDunnoWhatIsIt

© www.soinside.com 2019 - 2024. All rights reserved.