1

我正在尝试根据该单元格中标签中的文本行使表中的所有行都有自己的行高。我的出发点是这里的 Wenderlich 教程: https ://www.raywenderlich.com/129059/self-sizing-table-view-cells

我正在使用UITableViewAutomaticDimension您在下面看到的方法。但是由于某种原因,当我运行模拟时,行的高度都相同。我在代码中为估计的行高输入的数字或在情节提要的表格视图单元格中为行高输入的数字似乎并不重要。所有行的高度总是相同的。

我在这里想念什么?谢谢大家!

import UIKit

class LoLFirstTableViewController: UITableViewController {

    var tasks:[Task] = taskData

    override func viewDidLoad() {
        super.viewDidLoad()
        tableView.rowHeight = UITableViewAutomaticDimension
        tableView.estimatedRowHeight = 60.0
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }

    override func numberOfSections(in tableView: UITableView) -> Int {
        return 1
    }

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return tasks.count
    }

    @IBAction func cancelToLoLFirstTableViewController(_ segue:UIStoryboardSegue) {
    }

    @IBAction func saveAddTask(_ segue:UIStoryboardSegue) {
        if let AddTaskTableViewController = segue.source as? AddTaskTableViewController {

            if let task = AddTaskTableViewController.task {
            tasks.append(task)

                let indexPath = IndexPath(row: tasks.count-1, section: 0)
                tableView.insertRows(at: [indexPath], with: .automatic)
            }
        }
    }

    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath)
    -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "TaskCell", for: indexPath)
        as! TaskCell
        let task = tasks[indexPath.row] as Task
            cell.task = task
        return cell
        }
}

` 约束 模拟

4

1 回答 1

0

您对标签没有任何限制,因此标签不会导致其他任何内容发生变化。您对标签没有限制的原因是您正在使用堆栈视图进行所有操作。但是堆栈视图不会从内到外神奇地调整大小。因此,他们完全妨碍了你。

我建议完全消除堆栈视图。现在您将能够以正常方式执行此操作,并且它会起作用。

于 2017-01-22T21:16:08.197 回答