在不同的部分设置不同的行高(故事板)

时间:2012-07-15 01:57:46

标签: uitableview height cgfloat

我有一个带有多个原型单元的tableview,我在故事板中设计了,但是我遇到了高度问题,因为我的第一个单元格与第二个单元格不同,依此类推......我有不同的标识符对于每个单元格,因为我在故事板中设计它们,我知道它们的高度。我在我的代码中有这个,但它不起作用,有谁知道如何解决它?:

-(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{

UITableViewCell *cell = [[UITableViewCell alloc]init];
switch (indexPath.section) 

{
    case 1:

        cell = [tableView dequeueReusableCellWithIdentifier:@"cell1"];
        return 743.0f; 

        break;

    case 2:

        cell = [tableView dequeueReusableCellWithIdentifier:@"cell2"];
        return 300.0f;



}

}

感谢您的时间。

1 个答案:

答案 0 :(得分:7)

看起来您正在尝试将此方法用于不是为......而设计的目的 你想要覆盖这个方法:

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    switch (indexPath.section)
        case 1:
           static NSString *CellIdentifier = @"cell1";
           break;
        case 2:
           static NSString *CellIdentifier = @"cell2";
           break;

    UITableViewCell *cell = [tableView 
      dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) 
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    // Configure the cell...
    return cell;
}

仅更改heightForRowAtIndexPath中的行高:

-(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{

switch (indexPath.section) 

{
    case 1:

        return 743.0f; 

        break; //technically never used

    case 2:

        return 300.0f;



}

查看本教程http://www.raywenderlich.com/5138/beginning-storyboards-in-ios-5-part-1这是一个很好的资源