iOS 使用UILocalizedIndexedCollation智能分組排序

下面來介紹一下UILocalizedIndexedCollation的使用步驟

1、首先新建一個model類礼搁,例如:我新建一個Person類掰伸,為了簡單點我就添加一個name屬性懂傀。回到你的Controller里面進行控件初始化,這里就不多說了扭仁。

2、初始化數(shù)據(jù)源數(shù)組晓折,例如:初始化存儲索引標題的數(shù)組、每個索引下的section的數(shù)組兽泄、數(shù)據(jù)源數(shù)組漓概,具體見下圖。


數(shù)組分類

本地新建一個數(shù)組作為數(shù)據(jù)源病梢,例如: ?NSArray *localArray = @[@"林雨", @"林宏偉", @"周董", @"周樹人", @"周杰", @"阿華", @"阿梨", @"安冬", @"楊國棟", @"趙華", @"葉青", @"王曉敏", @"黨國傾", @"吳曉慧", @"任年華", @"陳庚", @"付海波", @"迪拜", @"滴華", @"鶴慶", @"杰斯", @"杰斌", @"牛羊"];

然后for循環(huán)添加并賦值Person類的name屬性保存到data數(shù)組里胃珍,例如下面代碼:

for (int i=0; i<localArray.count;i++) {

? ? ? ? ? Person *model = [Person new];

? ? ? ? ?model.name = localArray[i];

? ? ? ? ? [self.dataArray addObject:model];

}

3、下面開始對UILocalizedIndexedCollation進行初始化蜓陌。

UILocalizedIndexedCollation *collation = [UILocalizedIndexedCollation currentCollation];

//? ? 獲取collation的索引

NSUInteger sectionNumb = [[collation sectionTitles] count];

NSMutableArray *sectionArray = [[NSMutableArray alloc] init];

//? ? 循環(huán)索引觅彰,初始化空數(shù)組并加入到數(shù)據(jù)數(shù)組

for (NSInteger index = 0; index<sectionNumb;index++){

? ? ? ? ?[sectionArray addObject:[[NSMutableArray alloc] init]];

}

//? ? 1.便利數(shù)組中的元素

//? ? 2.獲取name值的首字母在26個字母中所在的位置

//? ? 3.把model對象加到相對應(yīng)的字母下的數(shù)組中去

for(Person *model in self.dataArray){

? ? ? ?NSUInteger sectionIndex = [collation sectionForObject:model ? ? ? ? collationStringSelector:@selector(name)];

? ? ? [sectionArray[sectionIndex] addObject:model];

}

//? ? 對每個section中的數(shù)組按照name屬性進行檢索排序(快速索引)

//? ? 1.獲取每個section下的數(shù)組

//? ? 2.對每個section下的數(shù)組進行字母排序

for(NSInteger index=0; index<sectionNumb;index++){

? ? ? ?NSMutableArray *personArrayForSection = sectionArray[index];

? ? ? ?NSArray *sortedPersonArrayForSection = [collation sortedArrayFromArray:personArrayForSection collationStringSelector:@selector(name)];

? ? ? ?sectionArray[index] = sortedPersonArrayForSection;

}

//? 新建一個temp空的數(shù)組(目的是為了在調(diào)用enumerateObjectsUsingBlock函數(shù)的時候把空的數(shù)組添加到這個數(shù)組里,在將數(shù)據(jù)源空數(shù)組移除钮热,或者在函數(shù)調(diào)用的時候進行判斷填抬,空的移除)

NSMutableArray *temp = [NSMutableArray new];

[sectionArray enumerateObjectsUsingBlock:^(NSArray *arr, NSUInteger idx, BOOL *stop) {

if (arr.count == 0) {

[temp addObject:arr];

} else {

[self.sectionTitlesArray addObject:[collation sectionTitles][idx]];

}

}];

[sectionArray removeObjectsInArray:temp];

self.sectionArray = sectionArray;


4、代理事項

#pragma mark 檢索返回標題數(shù)組個數(shù)

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {

? ? ? ? return self.sectionTitlesArray.count;

}

#pragma mark 返回每組下有多少條數(shù)據(jù)

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

? ? ? ? ?return [self.sectionArray[section] count];

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *ID = @"Identifier";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

if (!cell) {

cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];

}

NSUInteger section = indexPath.section;

NSUInteger row = indexPath.row;

Person *model = self.sectionArray[section][row];

cell.textLabel.text = model.name;

cell.accessoryType = UITableViewCellAccessoryNone;

return cell;

}


// 按順序顯示tableview的HeaderInSection標題

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{? ?

? ? ? return [self.sectionTitlesArray objectAtIndex:section];

}

// 按順序顯示檢索字母(不返回就不顯示右邊索引內(nèi)容)

- (NSArray*)sectionIndexTitlesForTableView:(UITableView *)tableView{

? ? ? ?return self.sectionTitlesArray;

}

//? 點擊右邊索引執(zhí)行的代理方法隧期,可以在這里設(shè)置顯示手指滑動時候索引的標題(sectionIndexColor是設(shè)置字體顏色飒责,sectionIndexBackgroundColor背景顏色)

- (NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index{

? ? self.titleLabel.hidden = NO;

? ? ?self.titleLabel.text = title;

? ? NSString *key = [self.sectionTitlesArray objectAtIndex:index];

? ? for (UIView *view in tableView.subviews) {

? ? ? ? NSLog(@"_________%@",view);

? ? ? if ([view isKindOfClass:NSClassFromString(@"UITableViewIndex")]) {

? ? }

}

? ? ?return [[UILocalizedIndexedCollation currentCollation] sectionForSectionIndexTitleAtIndex:index];

}

- (CGFloat)tableView:(UITableView *)tableView? heightForRowAtIndexPath:(NSIndexPath *)indexPath{

? ? ?return 60;

}

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{

? ? ?return 35;

}

做完這些就已經(jīng)完成UILocalizedIndexedCollation智能分組排序了,樣式就如下效果圖仆潮。


最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末读拆,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子鸵闪,更是在濱河造成了極大的恐慌檐晕,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,042評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件蚌讼,死亡現(xiàn)場離奇詭異辟灰,居然都是意外死亡,警方通過查閱死者的電腦和手機篡石,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,996評論 2 384
  • 文/潘曉璐 我一進店門芥喇,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人凰萨,你說我怎么就攤上這事继控。” “怎么了胖眷?”我有些...
    開封第一講書人閱讀 156,674評論 0 345
  • 文/不壞的土叔 我叫張陵武通,是天一觀的道長。 經(jīng)常有香客問我珊搀,道長冶忱,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,340評論 1 283
  • 正文 為了忘掉前任境析,我火速辦了婚禮囚枪,結(jié)果婚禮上派诬,老公的妹妹穿的比我還像新娘。我一直安慰自己链沼,他們只是感情好默赂,可當我...
    茶點故事閱讀 65,404評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著括勺,像睡著了一般放可。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上朝刊,一...
    開封第一講書人閱讀 49,749評論 1 289
  • 那天,我揣著相機與錄音蜈缤,去河邊找鬼拾氓。 笑死,一個胖子當著我的面吹牛底哥,可吹牛的內(nèi)容都是我干的咙鞍。 我是一名探鬼主播,決...
    沈念sama閱讀 38,902評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼趾徽,長吁一口氣:“原來是場噩夢啊……” “哼续滋!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起孵奶,我...
    開封第一講書人閱讀 37,662評論 0 266
  • 序言:老撾萬榮一對情侶失蹤疲酌,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后了袁,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體朗恳,經(jīng)...
    沈念sama閱讀 44,110評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年载绿,在試婚紗的時候發(fā)現(xiàn)自己被綠了粥诫。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,577評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡崭庸,死狀恐怖怀浆,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情怕享,我是刑警寧澤执赡,帶...
    沈念sama閱讀 34,258評論 4 328
  • 正文 年R本政府宣布,位于F島的核電站函筋,受9級特大地震影響搀玖,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜驻呐,卻給世界環(huán)境...
    茶點故事閱讀 39,848評論 3 312
  • 文/蒙蒙 一灌诅、第九天 我趴在偏房一處隱蔽的房頂上張望芳来。 院中可真熱鬧,春花似錦猜拾、人聲如沸即舌。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,726評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽顽聂。三九已至,卻和暖如春盯仪,著一層夾襖步出監(jiān)牢的瞬間紊搪,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,952評論 1 264
  • 我被黑心中介騙來泰國打工全景, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留耀石,地道東北人。 一個月前我還...
    沈念sama閱讀 46,271評論 2 360
  • 正文 我出身青樓爸黄,卻偏偏與公主長得像滞伟,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子炕贵,可洞房花燭夜當晚...
    茶點故事閱讀 43,452評論 2 348

推薦閱讀更多精彩內(nèi)容