In my UITableView i\'ve set different heights for different rows using the delegate method: tableView:heightForRowAtIndexPath:
UITableView
tableView:heightForRowAtIndexPath:
Now given a
Simplly Use
tableView:heightForRowAtIndexPath
method
int row = 1; int section = 0; NSIndexPath *indexPath = [NSIndexPath indexPathForRow:row inSection:section]; float height = [self tableView:tableView heightForRowAtIndexPath:indexPath];
Hope this wil help for you :)