iOS本地搜索功能的簡單實(shí)現(xiàn)

開篇之前尺栖,我們先來看一下我們即將實(shí)現(xiàn)的效果:


輸入搜索關(guān)鍵詞之前

輸入搜索關(guān)鍵詞之后

下面通過代碼來了解一下其實(shí)現(xiàn)邏輯
首先嫡纠,創(chuàng)建一個(gè)PersonData的類 ,屬性可以自定義無限制添加,在此只要一個(gè)屬性name除盏。

#import <Foundation/Foundation.h>

@interface PersonData : NSObject

@property(nonatomic,strong)NSString *name;

@end

緊接著就是UITableView和UISearchBar的結(jié)合叉橱,我們創(chuàng)建一個(gè)控制器,并聲明幾個(gè)屬性

@interface ViewController ()<UITableViewDelegate,UITableViewDataSource,UISearchBarDelegate>

@property (weak, nonatomic) IBOutlet UITableView *tableView;

@property(nonatomic,strong)NSArray *tableData;
@property(nonatomic,strong)NSMutableArray *requltData;

@property(nonatomic,strong)NSArray *tableIndexData;
@property(nonatomic,strong)NSMutableArray *requltIndexData;

@property(nonatomic,assign)BOOL searchActive;

@end
-(void)test{
    
    UISearchBar *searchBar = [[UISearchBar alloc]init];
    [searchBar sizeToFit];
    searchBar.delegate = self;
    [searchBar setAutocorrectionType:UITextAutocorrectionTypeNo];
    _tableView.tableHeaderView = searchBar;
    _tableView.sectionIndexColor = [UIColor grayColor];
    [_tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"Cell"];
    
    _tableView.dataSource = self;
    _tableView.delegate = self;
    
    NSArray *arr = @[@"張三",@"李四",@"王五",@"劉二",@"石小文",@"范玉",@"梁濤濤",@"杜玉真",@"張宇",@"趙四",@"劉能"];//,@"沈海鵬",@"曾志偉"
    NSMutableArray *personArray = [NSMutableArray arrayWithCapacity:arr.count];
    for (NSString  *name in arr) {
        PersonData *data = [[PersonData alloc]init];
        data.name = name;
        [personArray addObject:data];
    }
    
    NSArray *tempArray = [self groupingSortingWithObjects:personArray withSelector:@selector(name) isEmptyArray:YES];
    self.tableData = tempArray[0];
    self.tableIndexData = tempArray[1];
}

做好了以上的準(zhǔn)備工作者蠕,接下來就開始今天的重點(diǎn),在這里我們需要把本地所有的數(shù)據(jù)模型根據(jù)name屬性進(jìn)行分組來獲取一個(gè)索引數(shù)組窃祝,以及一個(gè)用于顯示UI的數(shù)據(jù)源數(shù)組。集體實(shí)現(xiàn)邏輯如下

/**
 將傳進(jìn)來的數(shù)據(jù)模型分組并排序  分成若干個(gè)分組  每個(gè)分組也進(jìn)行排序 并刪除分組中為空的分組

 @param objects 初始的對(duì)象數(shù)組
 @param selector 屬性名稱
 @param empty 清空與否
 @return 返回一個(gè)大數(shù)組 數(shù)組中是小數(shù)組  小數(shù)組中存儲(chǔ)模型對(duì)象
 */
-(NSArray *)groupingSortingWithObjects:(NSArray *)objects withSelector:(SEL)selector isEmptyArray:(BOOL)empty{
    
    //UILocalizedIndexedCollation的分組排序建立在對(duì)對(duì)象的操作之上
    UILocalizedIndexedCollation *collation = [UILocalizedIndexedCollation currentCollation];
    
    //得到collation索引數(shù)量(26個(gè)字母和1個(gè)#)
    NSMutableArray *indexArray = [NSMutableArray arrayWithArray:collation.sectionTitles];
    NSUInteger sectionNumber = [indexArray count];//sectionNumber = 27
    
    //建立每個(gè)section數(shù)組
    NSMutableArray *sectionArray = [NSMutableArray arrayWithCapacity:sectionNumber];
    for (int index = 0; index < sectionNumber; index++) {
        NSMutableArray *subArray = [NSMutableArray array];
        [sectionArray addObject:subArray];
    }
    
    for (PersonData *model in objects) {
        //根絕SEL方法返回的字符串判斷對(duì)象應(yīng)該處于哪個(gè)分區(qū)
        //將每個(gè)人按name分到某個(gè)section下
        NSInteger index = [collation sectionForObject:model collationStringSelector:selector];//獲取name屬性的值所在的位置踱侣,比如“林”首字母是L,則就把林放在L組中
        NSMutableArray *tempArray = sectionArray[index];
        [tempArray addObject:model];
    }
    
    //對(duì)每個(gè)section中的數(shù)組按照name屬性排序
    for (NSMutableArray *arr in sectionArray) {
        NSArray *sortArr = [collation sortedArrayFromArray:arr collationStringSelector:selector];
        [arr removeAllObjects];
        [arr addObjectsFromArray:sortArr];
    }
    
    //是不是刪除空數(shù)組
    if (empty) {
        [sectionArray enumerateObjectsWithOptions:NSEnumerationReverse usingBlock:^(NSArray *obj, NSUInteger idx, BOOL * _Nonnull stop) {
            if (obj.count == 0) {
                [sectionArray removeObjectAtIndex:idx];
                [indexArray removeObjectAtIndex:idx];
            }
        }];
    }
    //第一個(gè)數(shù)組為tableView的數(shù)據(jù)源  第二個(gè)數(shù)組為索引數(shù)組 A B C......
    return @[sectionArray,indexArray];
}

我們?cè)谳斎胨阉麝P(guān)鍵詞的時(shí)候需要實(shí)現(xiàn)UISecrchBar的UISecrchBarDelegate中的-(void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText方法

-(void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText{
    if (searchText.length == 0) {
        _searchActive = NO;
        [self.tableView reloadData];
        return;
    }
    _searchActive = YES;
    _requltData = [NSMutableArray array];
    _requltIndexData = [NSMutableArray array];
    
    dispatch_queue_t globalQueue = dispatch_get_global_queue(0, 0);
    dispatch_async(globalQueue, ^{
        [self.tableData enumerateObjectsUsingBlock:^(NSMutableArray *obj, NSUInteger adx, BOOL * _Nonnull stop) {
            if (_requltData.count == 0 || [[_requltData lastObject] count] != 0) {
                [_requltData addObject:[NSMutableArray array]];
            }
            
            [obj enumerateObjectsUsingBlock:^(PersonData *person, NSUInteger bdx, BOOL * _Nonnull stop) {
                NSString *tempStr = person.name;
                NSString *pinyin = [self transformToPinyin:tempStr isQuanpin:NO];
                
                if ([pinyin rangeOfString:searchText options:NSCaseInsensitiveSearch].length > 0) {
                    [_requltData.lastObject addObject:person];
                    if (_requltIndexData == 0 || ![_requltIndexData.lastObject isEqualToString:_tableIndexData[adx]]) {
                        [_requltIndexData addObject:_tableIndexData[adx]];
                    }
                }
            }];
        }];
        if ([_requltData.lastObject count] == 0) {
            [_requltData removeLastObject];
        }
        dispatch_async(dispatch_get_main_queue(), ^{
            [self.tableView reloadData];
        });
        
    });
}
-(NSString *)transformToPinyin:(NSString *)originalString isQuanpin:(BOOL)quanpin{
    
    NSMutableString *muStr = [NSMutableString stringWithString:originalString];
    
    //漢字轉(zhuǎn)成拼音
    CFStringTransform((CFMutableStringRef)muStr, NULL, kCFStringTransformMandarinLatin, NO);
    
    //去掉音標(biāo)
    CFStringTransform((CFMutableStringRef)muStr, NULL, kCFStringTransformStripDiacritics, NO);
    
    
    NSArray *pinyinArray = [muStr componentsSeparatedByString:@" "];
    NSMutableString *allString = [NSMutableString new];
    
    
    if (quanpin) {
        int count = 0;
        for (int i = 0; i < pinyinArray.count; i++)
        {
            
            for (int i = 0; i < pinyinArray.count; i++) {
                if (i == count)
                {
                    [allString appendString:@"#"];
                }
                [allString appendFormat:@"%@",pinyinArray[i]];
            }
            
            [allString appendString:@","];
            count++;
        }
    }
    NSMutableString *initialStr = [NSMutableString new];
    for (NSString *str in pinyinArray) {
        if ([str length] > 0) {
            [initialStr appendString:[str substringFromIndex:1]];
        }
    }
    [allString appendFormat:@"#%@",initialStr];
    [allString appendFormat:@",#%@",originalString];
    return allString;
}
- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
{
    [[[UIApplication sharedApplication] keyWindow] endEditing:YES];
}

最后實(shí)現(xiàn)
UITableViewDelegate,UITableViewDataSource


-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return _searchActive ? _requltData.count : _tableData.count;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return _searchActive ? [_requltData[section] count] : [_tableData[section] count];
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
    PersonData * m = _searchActive ? _requltData[indexPath.section][indexPath.row] : _tableData[indexPath.section][indexPath.row];
    cell.textLabel.text = m.name;
    return cell;
}
- (nullable NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
    return _searchActive ? _requltIndexData : _tableIndexData;
}
-(NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index{
    return [[UILocalizedIndexedCollation currentCollation]sectionForSectionIndexTitleAtIndex:index];
}
#pragma mark - Table View Delegate
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    UILabel * tempLab = [[UILabel alloc] initWithFrame:CGRectMake(30, 0, self.view.bounds.size.width, 20)];
//    tempLab.textAlignment = NSTextAlignmentCenter;
    tempLab.text = _searchActive ? _requltIndexData[section] : _tableIndexData[section];
    tempLab.backgroundColor = [UIColor colorWithRed:243/255.0 green:243/255.0 blue:243/255.0 alpha:1.0];
    return tempLab;
}

以上就是左右的邏輯設(shè)計(jì)與實(shí)現(xiàn)過程粪小。 另外有一點(diǎn)大家需要注意一點(diǎn) 有一些多音字的在分組的時(shí)候顯示的并不是那么友好,比如:沈 是多音字抡句,也念ceng 會(huì)被分到C組探膊。曾也是一樣等等。待榔。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末逞壁,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子锐锣,更是在濱河造成了極大的恐慌腌闯,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,914評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件雕憔,死亡現(xiàn)場離奇詭異姿骏,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)斤彼,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評(píng)論 2 383
  • 文/潘曉璐 我一進(jìn)店門工腋,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人畅卓,你說我怎么就攤上這事◇瘢” “怎么了翁潘?”我有些...
    開封第一講書人閱讀 156,531評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長歼争。 經(jīng)常有香客問我拜马,道長,這世上最難降的妖魔是什么沐绒? 我笑而不...
    開封第一講書人閱讀 56,309評(píng)論 1 282
  • 正文 為了忘掉前任俩莽,我火速辦了婚禮,結(jié)果婚禮上乔遮,老公的妹妹穿的比我還像新娘扮超。我一直安慰自己,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,381評(píng)論 5 384
  • 文/花漫 我一把揭開白布出刷。 她就那樣靜靜地躺著璧疗,像睡著了一般。 火紅的嫁衣襯著肌膚如雪馁龟。 梳的紋絲不亂的頭發(fā)上崩侠,一...
    開封第一講書人閱讀 49,730評(píng)論 1 289
  • 那天,我揣著相機(jī)與錄音坷檩,去河邊找鬼却音。 笑死,一個(gè)胖子當(dāng)著我的面吹牛矢炼,可吹牛的內(nèi)容都是我干的系瓢。 我是一名探鬼主播,決...
    沈念sama閱讀 38,882評(píng)論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼裸删,長吁一口氣:“原來是場噩夢(mèng)啊……” “哼八拱!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起涯塔,我...
    開封第一講書人閱讀 37,643評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤肌稻,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后匕荸,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體爹谭,經(jīng)...
    沈念sama閱讀 44,095評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,448評(píng)論 2 325
  • 正文 我和宋清朗相戀三年榛搔,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了诺凡。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,566評(píng)論 1 339
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡践惑,死狀恐怖腹泌,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情尔觉,我是刑警寧澤凉袱,帶...
    沈念sama閱讀 34,253評(píng)論 4 328
  • 正文 年R本政府宣布,位于F島的核電站侦铜,受9級(jí)特大地震影響专甩,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜钉稍,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,829評(píng)論 3 312
  • 文/蒙蒙 一涤躲、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧贡未,春花似錦种樱、人聲如沸蒙袍。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽左敌。三九已至,卻和暖如春俐镐,著一層夾襖步出監(jiān)牢的瞬間矫限,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評(píng)論 1 264
  • 我被黑心中介騙來泰國打工佩抹, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留叼风,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,248評(píng)論 2 360
  • 正文 我出身青樓棍苹,卻偏偏與公主長得像无宿,于是被迫代替她去往敵國和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子枢里,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,440評(píng)論 2 348

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

  • 概述在iOS開發(fā)中UITableView可以說是使用最廣泛的控件孽鸡,我們平時(shí)使用的軟件中到處都可以看到它的影子,類似...
    liudhkk閱讀 9,003評(píng)論 3 38
  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理栏豺,服務(wù)發(fā)現(xiàn)彬碱,斷路器,智...
    卡卡羅2017閱讀 134,626評(píng)論 18 139
  • 1奥洼、searchBar 本例子實(shí)現(xiàn)布局:上面是一個(gè)navigationController巷疼,接下來一個(gè)search...
    lilinjianshu閱讀 3,411評(píng)論 1 8
  • UISearchBar屬性相關(guān) _searchBar = [[UISearchBar alloc] initWit...
    DVWang閱讀 579評(píng)論 0 0
  • 電影給我的影響,是在大學(xué)時(shí)候才有真正的感知灵奖,感謝每一個(gè)故事帶給我的快樂嚼沿、感動(dòng)、震撼以及長久的思考瓷患,甚至對(duì)生活習(xí)慣的...
    小國國呀閱讀 606評(píng)論 0 2