更改IOS Sdk中的Cell.TextLabel宽度

时间:2013-08-12 05:16:42

标签: iphone ios objective-c uitableview

我想更改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;
}

帮我解决这个问题。

1 个答案:

答案 0 :(得分:2)

您是否尝试在layoutSubviews的开头添加[super layoutSubviews]。您不会获得类的默认行为,例如细胞分离线。