我正在尝试替换单元格的默认编辑模式行为。
我不希望出现带有左侧辅助视图的红色圆圈。
进入编辑模式后,我需要将内容视图向左移动&显示我的删除按钮。
到目前为止我所拥有的内容(自定义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;
}
&安培;这是结果:
以上代码效果很好!直到它开始滚动& contentview被重置。回到第一张图片。编辑标志不会保持我的内容视图框架更改。
我添加了这一行:
[cell setEditing:_tableView.isEditing animated:NO];
in cellForRowAtIndexPath&虽然它正在呼唤&正确设置编辑模式我的contentview仍处于原始位置&不是更新的
简短的YouTube视频解释问题: Youtube link
其他人有这个问题吗?
答案 0 :(得分:3)
请勿篡改内容视图框。只需创建按钮并将其设置为editingAccessoryView
,即可完成演示。
答案 1 :(得分:2)
您的问题是UITableView“有用”使用您从cellForRowAtIndexPath返回的单元格设置适当的状态布局。
处理此问题的最简单方法是在您的单元格类中覆盖-layoutSubviews。
- (void)layoutSubviews
{
if (self.editing)
{
CGRect bounds = self.bounds;
// do your custom layout
}
else
[super layoutSubviews];
}
这应该让事情变得非常有条理。
答案 2 :(得分:1)
看起来您正遭受UITableView如何将setEditting消息传递给其子单元格的副作用。文档声明电视将此消息发送到VISIBLE单元(仅)。因此,当新的/出列的单元变得可见时,它没有setEditting消息,因此具有_editting = NO。因此,您需要在tableView:cellForRowAtIndexPath:方法中测试并设置单元格的_editting = YES,然后您应该获得所需的显示删除按钮的滚动行为。