4

我有一个表格视图,其中包含我在情节提要中设计的多个原型单元格,但我遇到了高度问题,因为我的第一个单元格与第二个单元格不同,依此类推......我每个单元格都有不同的标识符,并且因为我在情节提要中设计了它们,所以我知道它们是高度的。我的代码中有这个,但它不起作用,有谁知道如何修复它?:

-(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;



}

}

谢谢你的时间。

4

1 回答 1

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它是一个很好的资源

于 2012-07-16T22:56:36.380 回答