我的 Array 元素看起来像这样
150,
150,
150,
571,
571,
571,
692,
692,
692,
123,
123,
123,
144,
144,
144,
147,
147,
147,
155,
155,
155,
542,
542,
542,
548,
548,
548,
551,
551,
551
而且我需要显示所有元素,但不能重复显示相同的元素,并且必须在 UItableView 中打印。这是我的代码,
NSArray *array=[jsonarray valueForKey:@"ID"];
cell.textLabel.text=[array objectAtIndex:indexPath.row] ;
在这里,我的 jsonarray 有多个字段,其中 ID 是一个。请指导..