gpt4 book ai didi

iphone - 单击单元格时的 UITableViewCellAccessoryCheckmark

转载 作者:行者123 更新时间:2023-11-28 22:36:22 27 4
gpt4 key购买 nike

我有一个 UITableView,每个单元格都有一个 UITableViewCellAccessoryCheckmark。用户可以根据自己的喜好选中和取消选中单元格。用户可以在表格 View 中检查/选择多个单元格。可以根据用户偏好取消选中/选中的单元格并再次选中。这是我试过的。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
if([[NSIndexPath indexPathWithIndex:indexPath.row] isEqual:self.selectedIndex]){
if(cell.accessoryType == UITableViewCellAccessoryCheckmark)
cell.accessoryType = UITableViewCellAccessoryNone;
else
cell.accessoryType = UITableViewCellAccessoryCheckmark;
}
else{
if(cell.accessoryType == UITableViewCellAccessoryCheckmark){

}
else{
cell.accessoryType = UITableViewCellAccessoryNone;}
}
}

在这种情况下,我的逻辑不正确。上面是我最接近的,但同样,第一次加载 tableview 时检查每个单元格。但其余功能都还可以。

所以我想要的是,最初在加载 View 时,我必须取消选中 UITableView 中的所有单元格。然后根据单元格的选择,必须在每个单元格中更新复选标记。属性 selectedIndex 的类型为 NSIndexPath 并且每次都在 didSelectRowAtIndexpath 中更新。

最佳答案

永远不要根据来自单元格的任何数据检查您选择的状态,始终使用您自己的数据模型或数组来维护所选状态。

呃,为什么? O_o

通常 UITableViewCell 会被重复使用,出现在索引 1 处的单元格可能会以相同状态再次出现在索引 8、7 或 9 或任何索引处(我们不需要 了解通常)当你使用dequeueReusableCell:

如果您想要CheckBox 样式(多选),您需要有一个数组来映射选定的索引。

如果您想要RadioButton 样式(一次单选),您需要有一个引用所选索引的变量。

在您的代码中的特定情况下..这可以这样解决:

if([[NSIndexPath indexPathWithIndex:indexPath.row] isEqual:self.selectedIndex]){
cell.accessoryType = UITableViewCellAccessoryCheckmark;
else{
cell.accessoryType = UITableViewCellAccessoryNone;}
}

关于iphone - 单击单元格时的 UITableViewCellAccessoryCheckmark,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15863789/

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