數組大致是裡面都是對象,然後根據對象裡面的一個欄位日期進行排序,然後根據日期大大小顯示在tableview上網上找到代碼
數組形式 arry=[{NAME:xxx,APPLY_DATE:20121211},{NAME:xxx,APPLY_DATE:20090815},{NAME:xxx,APPLY_DATE:20111211}];
NSComparisonResult compare(NSDictionary *firstDict, NSDictionary *secondDict, void *context){ if ([firstDict objectForKey:@"APPLY_DATE"] integerValue]< [secondDict objectForKey:@"APPLY_DATE"] integerValue]) return NSOrderedAscending; else if ([firstDict objectForKey:@"APPLY_DATE"] integerValue] >[secondDict objectForKey:@"APPLY_DATE"]integerValue]) return NSOrderedDescending; else return NSOrderedSame;}
然後就調用上面的方法就可以排出來的,然後要實現查詢除資料,顯示在tablivew上面,發現有許多的重複的資料,最後查到的原因是
NSString *CellIdentifier = [NSString stringWithFormat:@"queryCellId%d%d", indexPath.section, indexPath.row];//以前是這樣的 NSString *CellIdentifier = @"asdasdasdad"; <br> UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
發現需要加上他們的indexpath.row,indexpath.section這樣查詢出來的資料顯示在tablivew上才不會重複,而且每次查詢的時候又發現有時資料的不會根據查詢的變換,最後知道是要把數組 每次查詢前 [claimList removeAllObjects];移除後這樣才能每次查詢都是最新的,總結下