我正在努力使这项工作,但似乎无法围绕这个想法。
到目前为止,我已将它用于您可以选择单元格的位置,并且能够生成复选标记。然后,当您选择不同的单元格时,之前的复选标记将消失,并且tableview将在您刚刚选择的新单元格上创建一个新的复选标记。这一切都很美妙。
但是,我想要选择带有复选标记的同一个单元格, 选中标记不会消失。但是,确实如此!
我已经尝试了大量的if语句,看看我是否可以弄清楚如何使这项工作,但无法找到解决方案。我需要在我的代码中重新排列,这可能是次要的。
这是我的代码:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if(self.checkedIndexPath)
{
UITableViewCell* uncheckCell = [tableView
cellForRowAtIndexPath:self.checkedIndexPath];
uncheckCell.accessoryType = UITableViewCellAccessoryNone;
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}
if([self.checkedIndexPath isEqual:indexPath])
{
self.checkedIndexPath = nil;
}
else
{
cellCheck = [tableView cellForRowAtIndexPath:indexPath];
cellCheck.accessoryType = UITableViewCellAccessoryCheckmark;
self.checkedIndexPath = indexPath;
[tableView deselectRowAtIndexPath:indexPath animated:YES];
NSLog(@"%@", indexPath);
}
}
答案 0 :(得分:12)
如果选择带有复选标记的单元格,则将执行此代码。
if(self.checkedIndexPath)
{
UITableViewCell* uncheckCell = [tableView
cellForRowAtIndexPath:self.checkedIndexPath];
uncheckCell.accessoryType = UITableViewCellAccessoryNone;
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}
此代码将删除您在第一次选择期间添加的复选标记。
然后执行此代码
if([self.checkedIndexPath isEqual:indexPath])
{
self.checkedIndexPath = nil;
}
因此,只有当您再次选择相同的单元格时,复选标记才会重新出现
我认为更清洁的方式将如下。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell* cellCheck = [tableView
cellForRowAtIndexPath:indexPath];
cellCheck.accessoryType = UITableViewCellAccessoryCheckmark;
}
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell* uncheckCell = [tableView
cellForRowAtIndexPath:indexPath];
uncheckCell.accessoryType = UITableViewCellAccessoryNone;
}
您可以从[tableView indexPathForSelectedRow]获取self.checkedIndexPath的值; self.checkedIndexPath的设置是可选的,具体取决于代码的逻辑。
答案 1 :(得分:0)
你不直接操作单元格,将检查状态存储在某处并更改cellForRowAtIndex中的accessoryType:
static BOOL checkedRows[100]; // example data storage
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;
{
checkedRows[indexPath.row] = !checkedRows[indexPath.row];
[tableView reloadData];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
{
UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"somecell"];
if(!cell)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}
cell.accessoryType = checkedRows[indexPath.row] ? UITableViewCellAccessoryCheckmark : UITableViewCellAccessoryNone;
return cell;
}