在我的UITableView中,我使用委托方法为不同的行设置了不同的高度:tableView:heightForRowAtIndexPath:
现在给出一个NSIndexPath,我想获得先前为特定行分配的高度.
解决方法
你可以使用这个
CGRect frame = [tableView rectForRowAtIndexPath:indexPath]; NSLog(@"row height : %f",frame.size.height);
使用frame.size.height可以获得特定行的高度
Swift 3
let frame = tableView.rectForRow(at: indexPath) print(frame.size.height)