I would like to get the size of a UITableView\'s content view when the table is populated. Any suggestions on how to do this?
// Allows you to perform layout before the drawing cycle happens. //-layoutIfNeeded forces layout early. So it will correctly return the size. // Like dreaming before doing. [tableView layoutIfNeeded]; CGSize tableViewSize=tableView.contentSize;