0

我正在使用两个 NSMutable 数组来存储多个复选标记.. repeatDaysToStoredata1。这是 viewDidLoad 方法中的代码...

for (int i=1; i<=[repeatDaysToStore count]; i++) 


{

    BOOL isTheObjectThere = [repeatArray containsObject:[repeatDaysToStore objectAtIndex:(i-1)]];

    if (isTheObjectThere) 
    {

        NSString *into=[repeatArray objectAtIndex:[repeatArray indexOfObject:[repeatDaysToStore objectAtIndex:(i-1)]]];


              [data1 addObject:into];

        NSLog(@"check did load");

    }



}

在此之后我使用 data1 数组来检查单元格......

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

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
 if (cell == nil) {

    cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault   reuseIdentifier:CellIdentifier];
 }
 cell.textLabel.text=[repeatArray objectAtIndex:indexPath.row];
tableView.allowsMultipleSelection=YES;
 for (int j=1; j<=[data1 count]; j++) {
     NSLog(@"%d",[[data1 objectAtIndex:(j-1)]intValue]);
       NSLog(@"%d",indexPath.row);
   if([data1 indexOfObject:[data1 objectAtIndex:(j-1)]]==indexPath.row)
     {
  cell.accessoryType = UITableViewCellAccessoryCheckmark;
 } 
 else
  {
       cell.accessoryType = UITableViewCellAccessoryNone;
  }

  }

为了处理行选择,我在 didSelectRowAtIndexPath { NSString *myobj=[repeatArray objectAtIndex:indexPath.row];

    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];    
      if (cell.accessoryType == UITableViewCellAccessoryCheckmark) {
        cell.accessoryType = UITableViewCellAccessoryNone;
        [repeatDaysToStore removeObject:myobj];
        [data1 removeObject:myobj];


    } else {
        cell.accessoryType = UITableViewCellAccessoryCheckmark;
        [repeatDaysToStore addObject:myobj];
        [data1 addObject:myobj];

    }
[tableView reloadData];
 }

但它不起作用。有人请告诉我出了什么问题?

4

2 回答 2

0

我认为问题在于cellForRowAtIndexPath:方法的以下代码:

for (int j=1; j<=[data1 count]; j++)
{
     NSLog(@"%d",[[data1 objectAtIndex:(j-1)]intValue]);
     NSLog(@"%d",indexPath.row);
   if([data1 indexOfObject:[data1 objectAtIndex:(j-1)]]==indexPath.row)
   {
     cell.accessoryType = UITableViewCellAccessoryCheckmark;
   } 
   else
   {
       cell.accessoryType = UITableViewCellAccessoryNone;
   }
}

删除代码并编写如下条件:

if([data1 containsObject:[repeatArray objectAtIndex:indexPath.row])
{
   cell.accessoryType = UITableViewCellAccessoryCheckmark;
} 
else
{
   cell.accessoryType = UITableViewCellAccessoryNone;
}

[tableView reloadData];didSelectRowAtIndexPath:

于 2012-11-15T13:45:45.157 回答
0

我认为您需要一个不太复杂的数据结构才能以易于理解的方式进行这项工作。

表的数据应该是一个对象数组。每个对象应至少包含两个属性:一个是您要显示的信息cell.textLabel.text,另一个是BOOL表示是否选择该对象的属性。

选择一行后,将 设置为BOOL与当前行相反的值并重新加载表。在cellForRowAtIndexPath:中,只需将对象的当前设置用于请求的行,而无需通过辅助数组。

于 2012-11-15T13:49:54.843 回答