gpt4 book ai didi

ios - 在 UITableView IOS 中选择行时的多个复选标记

转载 作者:IT王子 更新时间:2023-10-29 08:22:04 25 4
gpt4 key购买 nike

我有一个 UITableView,它会在选中一行时显示复选标记。问题是,当我在 didSelectRowAtIndexPath 中选择一行并在所选行上添加复选标记时,它会添加一个额外的复选标记。这是我的代码

非常感谢任何帮助。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];

// Configure the cell...

cell.textLabel.text=[[Model.category objectAtIndex:indexPath.row] categoryName];

cell.imageView.image=[[Model.category objectAtIndex:indexPath.row]categoryImage];

//cell.detailTextLabel.text =@"Breve Descripción de la categoria";

return cell;

}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

if ([self.tableView cellForRowAtIndexPath:indexPath].accessoryType == UITableViewCellAccessoryCheckmark) {

[self.tableView cellForRowAtIndexPath:indexPath].accessoryType =UITableViewCellAccessoryNone;

[self.cellSelected removeObject:indexPath];

}else {

[tableView cellForRowAtIndexPath:indexPath].accessoryType=UITableViewCellAccessoryCheckmark;

[self.cellSelected addObject:indexPath];

}

[self checkMark];

[tableView reloadData];
}

- (void)checkMark{

for (NSIndexPath * indexPath in self.cellSelected) {

[self.tableView cellForRowAtIndexPath:indexPath].accessoryType=UITableViewCellAccessoryCheckmark;

}


}

最佳答案

[self.tableView cellForRowAtIndexPath:indexPath]didSelectRowAtIndexPath 中调用不会返回确切的单元格。它可以是相同的单元格、新的单元格或重复使用的单元格。如果它是一个重复使用的单元格,在其附属 View 中有一个复选标记,您最终将有两个带有复选标记的单元格。

最好存放在数组中,并据此使用。如果您计划进行多项选择,请使用下面的代码示例。

- (void)viewDidLoad
{
[super viewDidLoad];

// Do any additional setup after loading the view, typically from a nib.
self.cellSelected = [NSMutableArray array];
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//Cell Initialisation here

if ([self.cellSelected containsObject:indexPath])
{
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}
else
{
cell.accessoryType = UITableViewCellAccessoryNone;

}
return cell;
}


- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];
//if you want only one cell to be selected use a local NSIndexPath property instead of array. and use the code below
//self.selectedIndexPath = indexPath;

//the below code will allow multiple selection
if ([self.cellSelected containsObject:indexPath])
{
[self.cellSelected removeObject:indexPath];
}
else
{
[self.cellSelected addObject:indexPath];
}
[tableView reloadData];
}

关于ios - 在 UITableView IOS 中选择行时的多个复选标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23727255/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com