当我在 iOS 7 中进入编辑模式时UITableView
,我的单元格内容与删除按钮重叠。
我在 iOS7问题的编辑模式下检查了 UITableViewCell 内容重叠删除按钮,但在我的情况下它没有帮助。
我正在tableView:cellForRowAtIndexPath
动态创建方法中的单元格。
如果您对这个问题有任何想法,请告诉我。
当我在 iOS 7 中进入编辑模式时UITableView
,我的单元格内容与删除按钮重叠。
我在 iOS7问题的编辑模式下检查了 UITableViewCell 内容重叠删除按钮,但在我的情况下它没有帮助。
我正在tableView:cellForRowAtIndexPath
动态创建方法中的单元格。
如果您对这个问题有任何想法,请告诉我。
- (void)layoutSubviews
{
[super layoutSubviews];
self.contentView.frame = CGRectMake(0,
self.contentView.frame.origin.y,
self.contentView.frame.size.width,
self.contentView.frame.size.height);
if ((self.editing
&& (_state & UITableViewCellStateShowingDeleteConfirmationMask))){
float indentPoints = self.indentationLevel * self.indentationWidth;
self.contentView.frame = CGRectMake(50,
self.contentView.frame.origin.y,
self.contentView.frame.size.width - indentPoints - 30,
self.contentView.frame.size.height);
}
}
我实际上使用这个完全实现来让一切看起来都很好:
- (void)layoutSubviews
{
[super layoutSubviews];
self.contentView.frame = CGRectMake(0,
self.contentView.frame.origin.y,
self.contentView.frame.size.width,
self.contentView.frame.size.height);
if ((self.editing
&& ((_state & UITableViewCellStateShowingEditControlMask)
&& !(_state & UITableViewCellStateShowingDeleteConfirmationMask))) ||
((_state & UITableViewCellStateShowingEditControlMask)
))
{
float indentPoints = self.indentationLevel * self.indentationWidth;
self.contentView.layer.masksToBounds = YES;
self.contentView.frame = CGRectMake(50,
self.contentView.frame.origin.y,
self.contentView.frame.size.width - indentPoints,
self.contentView.frame.size.height);
}
if ((self.editing
&& (_state & UITableViewCellStateShowingDeleteConfirmationMask)))
{
float indentPoints = self.indentationLevel * self.indentationWidth;
self.contentView.frame = CGRectMake(50,
self.contentView.frame.origin.y,
self.contentView.frame.size.width - indentPoints - 30,
self.contentView.frame.size.height);
}
}
可能是您在 cellForRowAtIndexPath (委托方法)中为 Cell 设置单元格 setBackgroundImage 。不要在这里设置。将您的图像设置为:
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { cell.backgroundColor=[UIColor colorWithPatternImage:[UIImage imageNamed:@"cellList.png"]]; }