我有一个包含所有必需数据源和委托方法的表视图。
在我滑动单元格时运行时,会出现删除按钮,但显示单元格内容。 细胞不会移位。
我预计移动单元格的功能存在于以下代码中,但它不是
- (void)setEditing:(BOOL)editing animated:(BOOL)animated
{
[super setEditing:editing animated:animated];
[self.tableView setEditing:editing animated:animated];
}
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
if(indexPath.row)
return YES;
else
return NO;
}
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
return UITableViewCellEditingStyleDelete;
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete)
{
[[NoteManager sharedManager] removeNoteAtIndex:indexPath.row];
[self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
}
}
请帮我解决这个简单的问题 一个快速的帮助是适应..
答案 0 :(得分:0)
将子视图添加到单元格时,请确保将它们添加到单元格的contentView
,而不是单元格。
[cell.contentView addSubview:someSubview];
contentView
的框架将根据需要调整各种单元格装饰,包括删除按钮。