我想更改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;
}
帮我解决这个问题。
答案 0 :(得分:2)
您是否尝试在layoutSubviews的开头添加[super layoutSubviews]
。您不会获得类的默认行为,例如细胞分离线。