在我的UITableView
中,当它进入编辑模式时,我只想选择几个单元格。我知道UITableView
类具有属性allowsSelectionDuringEditing
,但这适用于整个UITableView
。我没有看到任何相关的委托方法来基于每个单元格进行设置。
我能想出的最佳解决方案是将allowsSelectionDuringEditing
设置为YES
。然后,在didSelectRowAtIndexPath
中,如果表视图正在编辑,则过滤掉任何不需要的选择。此外,在cellForRowAtIndexPath
中,将这些单元格selectionStyle
更改为无。
这样做的问题是进入编辑模式不会重新加载UITableViewCells
,因此他们的selectionStyle
在屏幕滚动之前不会改变。因此,在setEditing中,我还必须迭代可见单元格并设置它们的selectionStyle
。
这很有效,但我只是想知道这个问题是否有更好/更优雅的解决方案。附上我的代码的基本大纲。任何建议都非常感谢!谢谢。
- (void) tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath {
if (self.editing && ![self _isUtilityRow:indexPath]) return;
// Otherwise, do the normal thing...
}
- (UITableViewCell*) tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath {
// UITableViewCell* cell = ...
if (self.editing && ![self _isUtilityRow:indexPath])
{
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
else
{
cell.selectionStyle = UITableViewCellSelectionStyleBlue;
}
return cell;
}
- (void) setEditing:(BOOL)editing animated:(BOOL)animated {
[super setEditing:editing animated:animated];
if (editing)
{
for (UITableViewCell* cell in [self.tableView visibleCells])
{
if (![self _isUtilityRow:[self.tableView indexPathForCell:cell]])
{
cell.selectionStyle = UITableViewCellSelectionStyleNone;
}
}
}
else
{
for (UITableViewCell* cell in [self.tableView visibleCells])
{
if (![self _isUtilityRow:[self.tableView indexPathForCell:cell]])
{
cell.selectionStyle = UITableViewCellSelectionStyleBlue;
}
}
}
}
答案 0 :(得分:0)
我不确定您的应用是如何运作的,但也许您可以尝试在DataSource定义中的某处使用以下内容:
// Individual rows can opt out of having the -editing property set for them. If not implemented, all rows are assumed to be editable.
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath;
进入编辑模式时,使用该功能过滤第一个选择级别,然后使用第二个选择级别