代码之家  ›  专栏  ›  技术社区  ›  Abhinav

TableViewCell文本标签宽度问题

  •  1
  • Abhinav  · 技术社区  · 14 年前

    如何限制aCell.textLabel和aCell.detailTextLabel的宽度。我在textLabel中有一个大字符串,它覆盖在我的细节字符串上。我试过这个:

    2 回复  |  直到 14 年前
        1
  •  1
  •   Nimrod    14 年前

    UITableViewCell 在接口生成器中。这是我上一次做任何不寻常的事情。

    DarkDust刚刚在另一个问题中发布了这个教程: http://www.e-string.com/content/custom-uitableviewcells-interface-builder

        2
  •  1
  •   Tommy    13 年前

    UILabel *theTitle = [[[UILabel alloc] initWithFrame:CGRectMake(10, 10, 200, 25)] autorelease];                        
      [theTitle setText:[anObject objectForKey:@"key"];              
      [theTitle setFont:[UIFont fontWithName:[self textLabelFont] size:[[self textLabelFontSize] floatValue]]];                 
      [aCell.contentView addSubview:theTitle];