欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

ios-tableView自动计算行高

程序员文章站 2022-04-26 15:10:55
ios-tableView自动计算行高。最近通过学习了解到一个东西就是tableView可以自动的计算行高了,只需要配合autoLayout来使用就可以了。 先设置如下所示的代码...

ios-tableView自动计算行高。最近通过学习了解到一个东西就是tableView可以自动的计算行高了,只需要配合autoLayout来使用就可以了。

先设置如下所示的代码

 //先设置预估行高
       tableView.estimatedRowHeight = 200
      //再设置自动计算行高
      tableView.rowHeight = UITableViewAutomaticDimension
然后你要保证你在cell里面的控件,自上而下是有约束条件的最后一个控件要么有高度的限制要么有底部的约束限制,这样自上而下才可能计算成功。也就是说设置约束的时候必须注意每个控件在垂直方向上必须都有约束。

比如说这样子,我们设置了高度的约束,顶部的约束,然后最下面那个控件我设置了顶部的约束和底部的约束

  //2、自动布局,添加顶部的约束
       contentView.addConstraint(NSLayoutConstraint(item: statusCellTopView, attribute:.top, relatedBy: .equal, toItem: contentView, attribute: .top, multiplier: 1, constant: 0))
       //添加左边的约束
       contentView.addConstraint(NSLayoutConstraint(item: statusCellTopView, attribute: .left, relatedBy: .equal, toItem: contentView, attribute: .left, multiplier: 1, constant: 0))
       //添加右边的约束
       contentView.addConstraint(NSLayoutConstraint(item: statusCellTopView, attribute: .right, relatedBy: .equal, toItem: contentView, attribute: .right, multiplier: 1, constant: 0))
       //添加高度的约束
        contentView.addConstraint(NSLayoutConstraint(item: statusCellTopView, attribute: .height, relatedBy: .equal, toItem: nil, attribute: .notAnAttribute, multiplier: 1, constant:CGFloat(WBCellMargin+WBCellIconViewWH)))
        
       //添加正文的顶部约束
        contentView.addConstraint(NSLayoutConstraint(item: ContentText, attribute: .top, relatedBy: .equal, toItem:statusCellTopView, attribute: .bottom, multiplier: 1, constant: CGFloat(WBCellMargin)))
       //添加正文的左边的约束
        contentView.addConstraint(NSLayoutConstraint(item: ContentText, attribute: .left, relatedBy: .equal, toItem: contentView, attribute: .left, multiplier: 1, constant: CGFloat(WBCellMargin)))
        //设置底部的约束
        contentView.addConstraint(NSLayoutConstraint(item: ContentText, attribute: .bottom, relatedBy: .equal, toItem: contentView, attribute: .bottom, multiplier: 1, constant: CGFloat(-WBCellMargin)))