写在前面,一直以来特别想写点东西。记得有次老大曾经说过一句话,不要一直手心向上,要说会手心向下。懂得分享,好多次决定写文章,可是担心自己写出来的质量不高,反反复复好几次。今日再次下决心开启的“半桶水”的分享。
好吧唠叨了一大堆,直接进入主题:
下面的这个就是我们再也熟悉不过来的淘宝,搜索结果页的筛选页面,今天的主题就是实现这个样的效果。
Paste_Image.png
首先看看我的做出来效果
group.gif实现的原理
就是UICollectionView 的分组
主要想说的是我靠的是数据刷新的页面,首先来看看我的数据这里是自己造的数据也是模拟接口返回的那种
-(void)loadData{
self.dataArray = [NSMutableArray array];
NSMutableDictionary *mudic = [NSMutableDictionary dictionary];
mudic[@"switch"] = @"0";
mudic[@"name"] = @"教材分册1";
NSMutableArray *arr = [NSMutableArray array];
for(int i = 0;i<20;i++){
NSMutableDictionary *dic = [NSMutableDictionary dictionary];
dic[@"name"]=[NSString stringWithFormat:@"第%d章",i];
dic[@"id"]=[NSString stringWithFormat:@"%d",i];
dic[@"showclose"]=@"0";
[arr addObject:dic];
}
mudic[@"data"]=arr;
for(int i=0;i<10;i++){
[self.dataArray addObject:mudic];
}
self.scrArray = [self.dataArray mutableCopy];
}
1.这里的switch 是需要自己添加的字:控制右侧的关闭展开
2.内层的showclose是控制里面的是否选中
3.self.scrArray 这个数组主要是保留一份最原始的数据源,而我们操作的主要是self.dataArray,接着往下看明白
接下来我们看好一下代理的实现
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{
FiltrateReusableView *headReusableView=[collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"FiltrateReusableView" forIndexPath:indexPath];
headReusableView.index = indexPath.section;
headReusableView.dic = self.dataArray[indexPath.section];
headReusableView.filtrateReusableViewBlock = ^(BOOL state,NSInteger index){
NSDictionary *dic = self.dataArray[index];
NSMutableDictionary *mudic = [NSMutableDictionary dictionaryWithDictionary:dic];
NSString *stateStr = @"0";
if(state){
stateStr = @"1";
}
mudic[@"switch"]=stateStr;
[self.dataArray replaceObjectAtIndex:index withObject:mudic];
NSIndexSet *set = [NSIndexSet indexSetWithIndex:index];
[self.collectView reloadSections:set];
};
return headReusableView;
}
-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
return self.dataArray.count;
}
-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
NSDictionary *sedic = self.dataArray[section];
NSArray *arr = sedic[@"data"];
if([sedic[@"switch"] integerValue]==0&&arr.count>6){
return 6;
}
return arr.count;
}
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
FiltrateCVCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"FiltrateCVCell" forIndexPath:indexPath];
NSDictionary *sedic = self.dataArray[indexPath.section];
NSArray *arr = sedic[@"data"];
NSDictionary *item = arr[indexPath.row];
cell.dic = item;
return cell;
}
-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
NSDictionary *dic = self.dataArray[indexPath.section];
NSMutableDictionary *musecDic = [NSMutableDictionary dictionaryWithDictionary:dic];
NSArray *arr = musecDic[@"data"];
NSMutableArray *muArr = [NSMutableArray arrayWithArray:arr];
NSDictionary *item = muArr[indexPath.row];
NSMutableDictionary *mudic = [NSMutableDictionary dictionaryWithDictionary:item];
if([mudic[@"showclose"] integerValue]==1){//已经选中的
musecDic = self.scrArray[indexPath.section];
}else{
mudic[@"showclose"]=@"1";
musecDic[@"data"] = @[mudic];
}
[self.dataArray replaceObjectAtIndex:indexPath.section withObject:musecDic];
NSIndexSet *set = [NSIndexSet indexSetWithIndex:indexPath.section];
[self.collectView reloadSections:set];
}
怎么样是否感觉立刻清晰多了,靠更改数据刷新对应的section。
好吧就这样了,感觉解析的语言比较少,突然想起来一句话彪悍的人生不需要解释。啦啦啦啦啦,稍后我会整理一个demo,当然也会放上来,哪里呢github ,正好开始自己的git旅程,逼迫自己不断前进!
文章的菜单我也专门从项目中提取出来做了一个简单的YJDemo地址
后续:
如果你觉得对你有用欢迎给我一个star ,鼓励一下自己以后越来越好,争取提高分享更干的货!
网友评论