如何将我的Dictionary索引值列表放在if语句中?

时间:2012-05-29 20:12:41

标签: objective-c if-statement ios

我有一个uitableview,如果单元格位于存储在NSdictionary中的索引值列表中,我想将文本灰显。正如你所看到的,我有一个灰色的索引列表存储在一个nsdictionary中我得到模糊是如何将该列表移动到if(条件???)

NSDictionary *myIndexList = [[inList objectAtIndex:0] objectForKey:@"myIndex"];
   NSLog( @"data from INDEX !!!!!!!! %@", myIndexList);

   if (indexPath.row == ???myIndexList????) {

       cell.textLabel.textColor = [UIColor lightGrayColor];
   }

非常感谢,我希望这个新手问题能找到你。

1 个答案:

答案 0 :(得分:1)

for(NSString *aKey in myIndexList)
{
    if(indexPath.row == [myIndexList valueForKey:aKey])
    {
         cell.textLabel.textColor = [UIColor lightGrayColor];
    }
}

此代码将检查字典中的所有键,如果特定键的值等于该行,则会将文本颜色更改为lightGrayColor

现在,如果您只是以myIndexList而不是NSArray返回NSDictionary,那么您将使用此功能:

for(int n=0; n<[myIndexList count]; n++)
{
    if(indexPath.row == [[myIndexList objectAtIndex:n] integerValue])
    {
         cell.textLabel.textColor = [UIColor lightGrayColor];
    }
}