我有代码
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.row == 9) {
height = 124.0f;
}
return height;
}
但cellForRowAtIndexPath
为indexPath.row == 9
44.0f
为什么不返回124?