UISearchBar实现本页面搜索(跳转功能)

UISearchBar实现本页面搜索跳转功能,这个效果是iOS8.0之前的主流的效果

一、先看个效果

2016-07-12_14-37-01.gif

二、思路分析和代码实现

这个效果的实现,我觉的主要有二个难点(1.从大量的数据源中匹配到符合要求的;2.源页面和搜索到的页面的点击事件)。

2-1.解决第一个问题(从大量的数据源中匹配到符合要求)
注意了,开始上代码了
 #pragma mark UISearchBarDelegate
- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText{
    NSString* str = searchText;
    //这一句代码的妙处在于:可以用self.string的length来进行判断是原数据还是搜索的数据
    self.string = str;
    NSLog(@"%@",str);
    NSPredicate *namePredicate = [NSPredicate predicateWithFormat:@"SELF CONTAINS[c]%@ ",str];
//清空搜索数组
    [self.resultArray removeAllObjects];
    self.resultArray =  [NSMutableArray arrayWithArray:[_dataArray filteredArrayUsingPredicate:namePredicate]];
    [self.collectionView reloadData];

}

2-2.源页面和搜索到的页面的点击事件

需要注意的是:DataSource和点击事件的delegate二个部分都可以通过self.string来进行判断。

#pragma mark--UICollectionViewDataSource
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
    if (self.string.length == 0) {
        return _dataArray.count;
    }else{
        return self.resultArray.count;
    }
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{

InvestmentsViewCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:reuseID forIndexPath:indexPath];
    if (self.string.length == 0) {
        cell.lable.text = _dataArray[indexPath.item];
        NSLog(@"%@",cell);
    }else{
        cell.lable.text =     self.resultArray[indexPath.item];
        NSLog(@"%@",cell);
    }
    return cell;
}

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
    NSLog(@"%ld %ld",indexPath.section,indexPath.item);
    testController *test = [[testController alloc] init];
    if (self.string.length == 0) {
        test.str = _dataArray[indexPath.item];
    }else{
        test.str = self.resultArray[indexPath.item];
    }

    [self.navigationController pushViewController:test animated:YES];
}

三.结束

以上的效果的实现,代码已经实现。之前本人用UISearchController实现了另外一种的本页面的实现的效果,参考那篇文章看,欢迎各位同仁批评指正,共同进步。有什么问题可以通过QQ联系1312940166

你可能感兴趣的:(UISearchBar实现本页面搜索(跳转功能))