var tableViewHeight: CGFloat { tableView.layoutIfNeeded() return tableView.contentSize.height }
Objective-C的
- (CGFloat)tableViewHeight { [tableView layoutIfNeeded]; return [tableView contentSize].height; }