在表格视图中使用附件复选标记

时间:2011-08-08 12:16:10

标签: iphone objective-c xcode uitableview

我在表格视图中放置了8个项目的数组。我使用以下代码设置行上的复选标记

  

[[tableView cellForRowAtIndexPath:indexPath]   setAccessoryType:UITableViewCellAccessoryCheckmark];

。但我的问题是 1]每当我点击我的第一行时,第五行复选标记也会显示出来。 和 2]当我在检查一行后滚动表格视图并返回时,选中的标记会消失。 如何摆脱这些问题。 提前谢谢

这是代码

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

    [tableView deselectRowAtIndexPath:indexPath animated:NO];
    // find the cell being touched and update its checked/unchecked image
   CellView *targetCustomCell = (CellView *)[tableView cellForRowAtIndexPath:indexPath];
    [targetCustomCell checkAction:nil];

    if ([arrData count]>0) 
    {
        if ([arrData containsObject:[arrName objectAtIndex:indexPath.row]]) {
            [arrData removeObject:[arrName objectAtIndex:indexPath.row]];
            [[tableView cellForRowAtIndexPath:indexPath] setAccessoryType:UITableViewCellAccessoryNone];   
            NSLog(@"data removed");
            NSLog(@"arrData%@",arrData);
        }
        else {
            [arrData addObject:[arrName objectAtIndex:indexPath.row]];
            [[tableView cellForRowAtIndexPath:indexPath] setAccessoryType:UITableViewCellAccessoryCheckmark];   
            NSLog(@"data added");
            NSLog(@"tableArray%@",arrData);
        }

    }
    else {
        [arrData addObject:[arrName objectAtIndex:indexPath.row]];
        [[tableView cellForRowAtIndexPath:indexPath] setAccessoryType:UITableViewCellAccessoryCheckmark];   
        NSLog(@"data added");
        NSLog(@"arrData%@",arrData);
    }
   } 

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        static NSString *kCustomCellID = @"MyCellID";

        CellView *cell = (CellView *)[tableView dequeueReusableCellWithIdentifier:kCustomCellID];
        if (cell == nil)
        {
        cell = (CellView *)[[[CellView alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:kCustomCellID] autorelease];
        }
        cell.backgroundColor = [UIColor clearColor];
        cell.textLabel.font = [UIFont boldSystemFontOfSize:13];  
        cell.textLabel.lineBreakMode = UILineBreakModeWordWrap;
        cell.textLabel.textAlignment = UITextAlignmentLeft;
        cell.textLabel.text = [arrName objectAtIndex:indexPath.row];
        return cell;
    }

1 个答案:

答案 0 :(得分:1)

你的1)问题你提供了一些代码

2)问题:

您需要记住上次选择的行,因为您需要按以下方式存储上次选择的索引编号:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    cell.accessoryType = UITableViewCellAccessoryCheckmark;
    selectedIndex = indexPath.row;
    [tableView reloadData]; 
}

并在你的

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{
   if (indexPath.row == selectedIndex) 
  {
     cell.accessoryType = UITableViewCellAccessoryCheckmark;
  }
     cell.accessoryType = UITableViewCellAccessoryNone;

    return cell;
}
希望它对你有所帮助。