Get UITableView's height

前端 未结 5 1395
终归单人心
终归单人心 2021-02-20 10:27

I have created a UITableview with custom UITableViewCell.The UITableViewCell contains UILabels and I have calculated the heig

5条回答
  •  误落风尘
    2021-02-20 11:02

    Very simplest way to get your UITableView height

    - (CGFloat)tableViewHeight
    
    {
       [tblData layoutIfNeeded];
    
       return [YOUR_TABLE_NAME contentSize].height;
    }
    

提交回复
热议问题