我想更改它,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;
}
帮我解决这个问题。