IOS 數組的簡單排序

來源:互聯網
上載者:User
數組大致是裡面都是對象,然後根據對象裡面的一個欄位日期進行排序,然後根據日期大大小顯示在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];移除後這樣才能每次查詢都是最新的,總結下

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.