0

我有一个表格视图,其中包含用户选择的选项列表(这是一个编辑页面)。

表格视图如下所示

苹果 UITableViewCellAccessoryCheckmark

橙子 UITableViewCellAccessoryNone

菠萝 UITableViewCellAccessoryCheckmark 香蕉
UITableViewCellAccessoryNone

- (void)viewDidLoad {

  self.mySavedFruitsArray = [myDBOperations getMyFruitsList:[appDelegate getDBPath]:self.myId];

}

/ Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:
(NSIndexPath *)indexPath
//-------------------------------------------------------------------------------
{
    static NSString *CellIdentifier = @"PoemTypeCell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil)
    {
        cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"MyIdentifier"]autorelease];

    }

   NSDictionary *aDict = [self.myFruitsArr objectAtIndex:indexPath.row];
   NSString *aValue = [aDict objectForKey:@"value"];
   NSString *aId = [aDict objectForKey:@"key"];
   cell.textLabel.text = aValue;
   cell.accessoryType = UITableViewCellAccessoryNone;

   NSDictionary *aSavedDict = [self.mySavedFruitsArray objectAtIndex:indexPath.row];
    NSString *Value = [aSavedDict objectForKey:@"value"];
    NSString *Id = [aSavedDict objectForKey:@"key"];
    if ( aId == Id ){
        cell.accessoryType = UITableViewCellAccessoryCheckmark;
    }else
    {
        cell.accessoryType = UITableViewCellAccessoryNone;
    }    

  return cell;

}

mySavedFruitsArray- 它保存用户选择的水果。

myFruitsArr- 这有常见的水果清单

现在我想知道如何显示UITableViewCellAccessoryCheckmarkmySavedFruitsArray.

我的意思是,在这个编辑视图中,我想显示带有用户选择选项的水果列表。

请让我知道该怎么做。

我试过这样,但没有用。

/ Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:
(NSIndexPath *)indexPath
//-------------------------------------------------------------------------------
{
    static NSString *CellIdentifier = @"PoemTypeCell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    if (cell == nil)
    {
        cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:@"MyIdentifier"]autorelease];

    }

   NSDictionary *aDict = [self.myFruitsArr objectAtIndex:indexPath.row];
   NSString *aValue = [aDict objectForKey:@"value"];
   NSString *aId = [aDict objectForKey:@"key"];
   cell.textLabel.text = aValue;
   cell.accessoryType = UITableViewCellAccessoryNone;

   NSDictionary *aSavedDict = [self.mySavedFruitsArray objectAtIndex:indexPath.row];
    NSString *Value = [aSavedDict objectForKey:@"value"];
    NSString *Id = [aSavedDict objectForKey:@"key"];
    if ( aId == Id ){
        cell.accessoryType = UITableViewCellAccessoryCheckmark;
    }else
    {
        cell.accessoryType = UITableViewCellAccessoryNone;
    }    

  return cell;

}

请注意 self.mySavedFruitsArray 可能不总是等于 myFruitsArr (因为用户只能选择一种水果)。

4

3 回答 3

2
if ( aId == Id ){
        cell.accessoryType = UITableViewCellAccessoryCheckmark;
    }else
    {
        cell.accessoryType = UITableViewCellAccessoryNone;
    }    

字符串比较是错误的。您应该以这种方式比较字符串:

if([aId isEqualToString:Id]) {
....
}
于 2012-05-21T10:01:13.273 回答
1

而不是检查 if ( aId == Id ) 比较字符串作为相同的对象,使用 if ([aID isEqualToString:Id]) 比较字符串

于 2012-05-21T10:01:33.873 回答
0

在昨天(2014 年 6 月 8 日)下载的版本中,UITableViewCellAccessoryCheckmark无效UITableViewCellAccessoryNone。它为我抛出了编译器错误。我认为您应该将其用作枚举,如下所示:

    if item.completed {
        cell!.accessoryType = UITableViewCellAccessoryType.Checkmark
    } else {
        cell!.accessoryType = UITableViewCellAccessoryType.None
    }

通过此更改,我的代码编译并且行为出现在模拟器中。抱歉,我不知道要查找哪个版本(UIKit?),我是 iOS 开发新手。

于 2014-06-08T23:55:15.130 回答