I have created a UITableview with custom UITableViewCell.The UITableViewCell contains UILabels and I have calculated the heig
UITableview
UITableViewCell
UILabels
Very simplest way to get your UITableView height
- (CGFloat)tableViewHeight { [tblData layoutIfNeeded]; return [YOUR_TABLE_NAME contentSize].height; }