Get UITableView's height

前端 未结 5 1399
终归单人心
终归单人心 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 10:53

    on iOS 8+ this worked to get the table view Height

    CGFloat tableViewHeight = tableView.bounds.size.height;
    

提交回复
热议问题