搜刮框的後果演示:
這個就是所謂的搜刮框了,那末接上去我們看看若何應用代碼來完成這個功效.
我所應用的數據是豪傑同盟的豪傑名單,是一個JSON數據的txt文件, JSON數據的處置代碼以下所示:
//獲得文件的途徑path NSString *path = [[NSBundle mainBundle] pathForResource:@"heros" ofType:@"txt"]; //將途徑下的文件轉換成NSData數據 NSData *data = [NSData dataWithContentsOfFile:path]; //將獲得的NSdata數據停止JSON解析並前往一個成果數組result id result = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil];
我們再來看數據的層級關系:
這裡說明下,這個層級關系是經由過程在線代碼格局化網頁獲得的,我們上一步所做的數據處置就是將原始數據停止處置,獲得一個成果數組,他的層級關系和格局化後一樣,如許便可以依據格局化網頁上的層級關系來進一步處置數據,將須要的內容放入數組或許字典(固然也能夠直接打印result來看層級關系,看小我習氣).
那末我們所須要的內容就是字典中nick所對應的值,經由過程遍歷將其掏出來放入數組中,這裡將這個數組界說為屬性,在其他辦法裡會用到.
// 將搜刮規模的內容放入數組 for (NSDictionary *diction in result) { [self.arrOfSeachBoxes addObject:diction[@"nick"]]; }
接上去我們創立一個UITableView用來顯示數據,搜刮條須要用到的類是UISearchController
,先看看若何創立:
體系的正文說的很清晰,假如想要在以後頁顯示搜刮成果,這個辦法的參數填nil便可,為了便利起見,聲明一個UISearchController
的屬性
@property (nonatomic, retain) UISearchController *searchController;
接上去是創立
// nil表現在以後頁面顯示搜刮成果 self.searchController = [[UISearchController alloc] initWithSearchResultsController:nil];
UISearchController頭文件中被放在異常靠前的地位的是一個屬性
依據字面意思我們可以猜到這跟搜刮成果的更新有關,就跟tableView
的reloadData
一個意思.那末很顯著,我們得簽協定<UISearchResultsUpdating
>,這個協定中只要一個必需要完成的辦法.
- (void)updateSearchResultsForSearchController:(UISearchController *)searchController;
頭文件以下圖所示:
---------這裡是俏麗的朋分線---------
下面曾經把一切關於搜刮條的類和辦法枚舉了一下,上面來捋一捋
一切界說的屬性以下所示:
NS_ASSUME_NONNULL_BEGIN @interface ViewController () <UITableViewDelegate, UITableViewDataSource, UISearchResultsUpdating> @property (nonatomic, retain) NSMutableArray *arrOfSeachBoxes;/**< 搜刮規模 */ @property (nonatomic, retain) NSMutableArray *arrOfSeachResults;/**< 搜刮成果 */ @property (nonatomic, retain) UISearchController *searchController; @property (nonatomic, retain) UITableView *tableView; @end NS_ASSUME_NONNULL_END
數據處置相干代碼以下:
// 解析數據 NSString *path = [[NSBundle mainBundle] pathForResource:@"heros" ofType:@"txt"]; NSData *data = [NSData dataWithContentsOfFile:path]; id result = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:nil]; self.arrOfSeachBoxes = [NSMutableArray array]; // 將搜刮規模的內容放入數組 for (NSDictionary *dic in result) { [self.arrOfSeachBoxes addObject:dic[@"nick"]]; }
和UISearchController的創立相干代碼以下:
// 創立 self.searchController = [[UISearchController alloc] initWithSearchResultsController:nil]; //searchBar的frame self.searchController.searchBar.frame = CGRectMake(0, 44, 0, 44); // 能否須要在輸出搜刮內容時變暗 self.searchController.dimsBackgroundDuringPresentation = false; self.searchController.searchBar.showsCancelButton = YES;/**< 撤消按鈕 */ self.searchController.searchResultsUpdater = self;/**< 顯示搜刮成果的VC */ self.searchController.active = YES;/**< 搜刮成果顯示 */
和tableView相干的代碼以下:
// tableView self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 20, self.view.bounds.size.width, self.view.bounds.size.height - 20) style:UITableViewStylePlain]; [self.view addSubview:self.tableView]; self.tableView.delegate = self; self.tableView.dataSource = self; [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:@"pool"]; //將SearchBar放在tableView的頭部視圖 self.tableView.tableHeaderView = self.searchController.searchBar;
UISearchResultsUpdating協定辦法代碼以下:
- (void)updateSearchResultsForSearchController:(UISearchController *)searchController { //初始化存儲搜刮成果的數組 self.arrOfSeachResults = [NSMutableArray array]; // 獲得症結字 NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF CONTAINS[c] %@", searchController.searchBar.text]; // 用症結字過濾數組中的內容, 將過濾後的內容放入成果數組 self.arrOfSeachResults = [[self.arrOfSeachBoxes filteredArrayUsingPredicate:predicate] mutableCopy]; // 完成數據的過濾和存儲後刷新tableView. [self.tableView reloadData]; }
tableView的DataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { // 顯示搜刮成果時 if (self.searchController.active) { //以搜刮成果的個數前往行數 return self.arrOfSeachResults.count; } //沒有搜刮時顯示一切數據 return self.arrOfSeachBoxes.count; }
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"pool"]; // 顯示搜刮成果時 if (self.searchController.active) { // 原始搜刮成果字符串. NSString *originResult = self.arrOfSeachResults[indexPath.row]; // 獲得症結字的地位 NSRange range = [originResult rangeOfString:self.searchController.searchBar.text]; // 轉換成可以操作的字符串類型. NSMutableAttributedString *attribute = [[NSMutableAttributedString alloc] initWithString:originResult]; // 添加屬性(粗體) [attribute addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:20] range:range]; // 症結字高亮 [attribute addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:range]; // 將帶屬性的字符串添加到cell.textLabel上. [cell.textLabel setAttributedText:attribute]; cell.textLabel.text = self.arrOfSeachResults[indexPath.row]; } else { cell.textLabel.text = self.arrOfSeachBoxes[indexPath.row]; } return cell; }
總結
以上就是若何完成IOS搜刮欄及搜刮症結字高亮的全體內容,感興致的同窗可以本身著手操作完成下,願望對年夜家的進修有所贊助。
【若何完成IOS_SearchBar搜刮欄及症結字高亮】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!