UITableViewCell的详细文本被截断/超过设备宽度

时间:2014-12-30 08:49:23

标签: ios objective-c uitableview

我有一个单元格

   cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1
                                      reuseIdentifier:cellID];
   cell.textLabel.text = @"Date";
   cell.detailTextLabel.text = [self.dateFormatter someDate];

在Simulator上运行正常,但在设备上运行时,我看到 detail text 被截断。

我只看到"Dec 30 2014, 12:1"

上面的代码出了什么问题?

2 个答案:

答案 0 :(得分:1)

当然你会被截断,因为这种类型的单元格如下所示: enter image description here

您需要在storyboard或nib中创建自己的自定义单元格和布局标签,如何...

答案 1 :(得分:0)

您可以为表格视图单元格使用字幕样式,或者您需要在storyboard或xib中创建自己的自定义单元格。