0

我想更改它,width for the cell TextLabel因为它与我的自定义按钮重叠。

我尝试以下代码,但它删除了单元格分隔线。

@interface CustomTableViewCell : UITableViewCell
@end

@implementation CustomTableViewCell

- (void)layoutSubviews
{
    CGRect textLabelFrame = self.textLabel.frame;

    textLabelFrame.size.width=250.0f;
    self.textLabel.frame = textLabelFrame;
}

帮我解决这个问题。

4

1 回答 1

2

您是否尝试[super layoutSubviews]在 layoutSubviews 的开头添加。您将不会获得类的默认行为,例如单元格分隔线。

于 2013-08-12T06:14:00.890 回答