IOS Dynamic Tableviewcell,奇怪的UILabel行为

时间:2013-08-15 04:56:26

标签: ios dynamic uitableview

我有一个动态tableview,可以从Web上的XML文件加载数据。原型单元只是两个标签(堆叠)和三个按钮衬在视图的底部。我添加了代码,根据标签的文本长度扩展第二个标签和单元格高度的大小。一些单元格显示完整的第二个标签,而大多数仅显示第一个标签。在我重新录制它们之后,有时单元格将显示完整的第二个标签(屏幕外屏幕)。 这是我的cellForRowAtIndexPath代码。

    static NSString *CellIdentifier = @"localdiningTableCell";

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

        mhgiDiningXmlObject *object = [self.xmlParser.allItems objectAtIndex:[indexPath row]];
        // Configure the cell...
        diningcell.nameLabel.text= [object Name];



        NSString *typeText = [object Type];
        NSString *addressText = [NSString stringWithFormat:@"%@, %@, %@", [object Street], [object City], [object State]];
        NSString *distanceText = [NSString stringWithFormat:@"%@ miles from the hotel", [object Distance]];
        NSString *descrText = [NSString stringWithFormat:@"%@\n%@\n%@", typeText, addressText, distanceText];


        UIFont *cellFont = [UIFont fontWithName:@"Helvetica" size:17.0];
        CGSize constraintSize = CGSizeMake(260.0f, MAXFLOAT);
        CGSize labelSize = [descrText sizeWithFont:cellFont constrainedToSize:constraintSize lineBreakMode:NSLineBreakByWordWrapping];
        CGRect frame = CGRectMake (diningcell.typeLabel.frame.origin.x, diningcell.typeLabel.frame.origin.y, 260.0f, labelSize.height);

        diningcell.typeLabel.frame = frame;
        diningcell.typeLabel.lineBreakMode = NSLineBreakByWordWrapping;
        diningcell.typeLabel.numberOfLines = 0;
        diningcell.typeLabel.font = [UIFont fontWithName:@"Helvetica" size:17.0];
        diningcell.typeLabel.text = descrText;

        return diningcell;

实施例,

应该是这样的

  Label 1

  Label 2, with some long
  text that takes up more than
  one line

但看起来像这样

  Label 1

  Label 2, with some long
  .
  .

注意,“。”实际上没有显示,只是表明提供了标签的空间。文本似乎在随机单元格上消失了。

2 个答案:

答案 0 :(得分:0)

1.如果您有mhgiLocalDiningCell.xib,请使用

if (cell == nil) {
    NSArray *nib = [[NSBundle mainBundle]loadNibNamed:@"mhgiLocalDiningCell" owner:self options:nil];
    if ([nib count] > 0) {
        cell = nib[0];
    }
}

2.你用

返回了任何一行的正确高度
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

tableView.rowHeight = 44.0f;

答案 1 :(得分:0)

  • 验证您是否启用了自动布局。
  • 验证您是否拥有属性translatesAutoresizingMaskIntoConstraints 设置为YES或NO - 您正在设置框架(see Adopting Auto Layout
  • 确认您在运行时未收到约束冲突警告 你的代码
  • 为什么要在init中传递UITableViewCellStyleDefault值 功能?你是否正确地初始化了你的细胞?

您可能想要定义属性,而不是使用框架:

@property (strong, nonatomic) IBOutlet NSLayoutConstraint *labelHeight;

然后

float width = self.label.frame.size.width
CGSize constraintSize = CGSizeMake(width, MAXFLOAT);
CGSize labelSize = [descrText sizeWithFont:cellFont constrainedToSize:constraintSize lineBreakMode:NSLineBreakByWordWrapping];
self.labelHeight.constant = labelSize.height;