Created
October 2, 2015 13:37
-
-
Save tommypeps/42732308212bfe485813 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-(void)configSearch | |
{ | |
self.searchController = [[UISearchController alloc] initWithSearchResultsController:nil]; | |
self.searchController.searchResultsUpdater = self; | |
self.searchController.dimsBackgroundDuringPresentation = NO; | |
self.searchController.searchBar.frame = CGRectMake(self.searchController.searchBar.frame.origin.x, self.searchController.searchBar.frame.origin.y, self.searchController.searchBar.frame.size.width, 44.0); | |
self.tableView.tableHeaderView = self.searchController.searchBar; | |
self.searchController.searchBar.delegate = self; | |
self.tableView.tableHeaderView = self.searchController.searchBar; | |
} | |
-(void)updateSearchResultsForSearchController:(UISearchController *)searchController | |
{ | |
NSString *searchString = [self.searchController.searchBar text]; | |
[self updateFilteredContentForProductName:searchString type:nil]; | |
[self.tableView reloadData]; | |
} | |
#pragma mark - UISearchBarDelegate | |
// Workaround for bug: -updateSearchResultsForSearchController: is not called when scope buttons change | |
- (void)searchBar:(UISearchBar *)searchBarselectedScopeButtonIndexDidChange:(NSInteger)selectedScope | |
{ | |
[self updateSearchResultsForSearchController:self.searchController]; | |
} | |
#pragma mark - Content Filtering | |
//TODO:HECHO | |
- (void)updateFilteredContentForProductName:(NSString *)productName | |
type:(NSString *)typeName | |
{ | |
[_searchResult removeAllObjects]; | |
for (JRCenterInfo *center in _listElement) { | |
NSUInteger searchOptions = NSCaseInsensitiveSearch | NSDiacriticInsensitiveSearch; | |
NSRange productNameRange = NSMakeRange(0, center.name.length); | |
NSRange foundRange = [center.name rangeOfString:productName options:searchOptions range:productNameRange]; | |
if (foundRange.length > 0) { | |
[self.searchResult addObject:center]; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment