In my UITableView i\'ve set different heights for different rows using the delegate method: tableView:heightForRowAtIndexPath:
UITableView
tableView:heightForRowAtIndexPath:
Now given a
You can use this
CGRect frame = [tableView rectForRowAtIndexPath:indexPath]; NSLog(@"row height : %f", frame.size.height);
Using frame.size.height you can get height of particular row
frame.size.height
Swift 3
let frame = tableView.rectForRow(at: indexPath) print(frame.size.height)