自我调整表视图中的iOS自调整大小表视图

时间:2017-12-14 12:58:01

标签: ios swift

enter image description here 我有一个带有X个单元格的tableView,每个单元格有1个带有N个单元格的表格视图。 如何使每个x单元格符合其子表格的内容大小。

1 个答案:

答案 0 :(得分:1)

我认为你应该使用表格视图和部分,所以你的X个单元格将是这种情况下的部分数量,N个单元格将是该部分中的行数。

    //MARK: TableView Delegate
    func numberOfSections(in tableView: UITableView) -> Int {
        return X
    }
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "YourIdentifier") as? YourTableViewCell
        return cell

    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return numberOfRows
    }

希望这就是你所需要的。