根据contentSize增加tableview的高度

时间:2017-07-18 09:54:33

标签: ios uitableview swift3

我创建了tableview,在tableview单元格中我给出了另一个子tableview,并且能够在两个表视图中填充数据但是不能给出tableview的自动增量高度,我也在tableview中给出了约束高度单元格,但它没有增加子tableview的高度,当我在主tableview中给出子tableview约束高度时它给我错误那么如何增加子tableview的高度?

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
       if tableView == tableview1{
        return fees.count
        }else{
        return descriptionFe.count
        }

    }
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

        if tableView == tableview1{
        let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! FeesTableViewCell
        let getdata = fees[indexPath.row]
        cell.billno_txt.text = getdata.Billno
            let date = getdata.recivedDate
            let dateFormatter = DateFormatter()
            dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss"
            let dateFromString : NSDate = dateFormatter.date(from: date)! as NSDate
            dateFormatter.dateFormat = "dd-MM-yyyy"
            let datenew = dateFormatter.string(from: dateFromString as Date)
            cell.received_date_txt.text = datenew


            cell.status_txt.text = getdata.status
            cell.total_amount_txt.text = getdata.AmountPaid

            let date1 = getdata.recivedDate
            let dateFormatter1 = DateFormatter()
            dateFormatter1.dateFormat = "yyyy-MM-dd'T'HH:mm:ss"
            let dateFromString1 : NSDate = dateFormatter1.date(from: date1)! as NSDate
            dateFormatter1.dateFormat = "dd-MM-yyyy"
            let datenew1 = dateFormatter1.string(from: dateFromString1 as Date)
            cell.date_txt.text = datenew1




        return cell

        }
        else{
            let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! FeesTableViewCell
//           

        cell.innertableviewheight.constant = tableView.contentSize.height



             cell.inner_txt1.text = fees[indexPath.row].Billno

            cell.inner_txt2.text = fees[indexPath.row].AmountPaid

            return cell
        }
    }
子表视图单元格中的

class FeesTableViewCell: UITableViewCell{
  @IBOutlet weak var billno_txt: UILabel!
    @IBOutlet weak var date_txt: UILabel!


    @IBOutlet weak var total_amount_txt: UILabel!

    @IBOutlet weak var status_txt: UILabel!

    @IBOutlet weak var received_date_txt: UILabel!


    @IBOutlet weak var innertableviewheight: NSLayoutConstraint!



    @IBOutlet weak var inner_txt1: UILabel!

    @IBOutlet weak var inner_txt2: UILabel!
    @IBOutlet weak var inner_tableview: UITableView!

 override func awakeFromNib() {
        super.awakeFromNib()
        // Initialization code


    }
    override init(style: UITableViewCellStyle, reuseIdentifier: String!) {
        super.init(style: style, reuseIdentifier: reuseIdentifier)
        innertableviewheight.constant = inner_tableview.contentSize.height

            }

    required init?(coder aDecoder: NSCoder) {
        super.init(coder: aDecoder)!
//        fatalError("init(coder:) has not been implemented")
           }


}

这是我的UI设计 enter image description here

我很困惑我们可以在主表视图单元格内增加子tableview的高度。我需要一些建议。

1 个答案:

答案 0 :(得分:0)

您可以为每个单元格设置大小数组,其中存储根据内容计算大小。

之后使用

func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat 
{
    // return your sizeArray[indexPath.row]
}

例如,您的1行条目需要20个高度

假设您的第1行只有1个项目可以存储20个 你的第二行只有3个项目,你可以存储60个等等

let sizeArray = [20,60]();

func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat 
{
    return sizeArray[indexPath.row]
}