我正在尝试替换单元格的默认编辑模式行为。
我不希望出现带有线左附件视图的红色圆圈。
进入编辑模式后,我需要它向左移动内容视图并显示我的删除按钮。
到目前为止我所拥有的(自定义 UITableViewCell)覆盖:
-(void) setEditing:(BOOL)editing animated:(BOOL)animated
{
/* don't call super */
// [super setEditing:editing animated:animated];
_isEditing = editing;
CGFloat newContentViewX = 0.0f;
UIColor *newDeleteButtonColor = [UIColor clearColor];
if ( _isEditing )
{
newContentViewX = -40.0f;
newDeleteButtonColor = [UIColor redColor];
}
if ( animated )
{
[UIView animateWithDuration:0.5f
delay:0.0f
options:UIViewAnimationOptionCurveEaseInOut
animations:^
{
self.contentView.x = newContentViewX; //change frame.origin.x
_deleteButton.backgroundColor = newDeleteButtonColor;
}
completion:nil];
}
else
{
self.contentView.x = newContentViewX; //change frame.origin.x
_deleteButton.backgroundColor = newDeleteButtonColor;
}
}
-(BOOL) editing
{
return _isEditing;
}
这是结果:
上面的代码效果很好!直到它开始滚动并且内容视图被重置。回到第一张图片。编辑标志没有保留我的内容视图框架更改。
我添加了这一行:
[cell setEditing:_tableView.isEditing animated:NO];
在 cellForRowAtIndexPath 中,尽管它正在正确调用和设置编辑模式,但我的 contentview 仍处于原始位置而不是更新
简短的 youtube 视频解释问题: Youtube 链接
还有其他人有这个问题吗?