我有一个 uitableview,如果单元格位于存储在 NSdictionary 中的索引值列表中,我想将文本变灰。正如您所看到的,我将要变灰的索引列表存储在一个 nsdictionary 中,我感到模糊的是如何将该列表移动到 if(condition???)
NSDictionary *myIndexList = [[inList objectAtIndex:0] objectForKey:@"myIndex"];
NSLog( @"data from INDEX !!!!!!!! %@", myIndexList);
if (indexPath.row == ???myIndexList????) {
cell.textLabel.textColor = [UIColor lightGrayColor];
}
非常感谢,我希望这个新手问题能找到你。