問題:
- collectionview 的header會(huì)重復(fù)添加。
- collectionview 的header數(shù)據(jù)錯(cuò)亂樱蛤。
tableView的header倒是沒有什么問題猾封,但是今天在使用collectionview設(shè)置header的時(shí)候就出現(xiàn)問題了寂拆。
剛開始我用的系統(tǒng)的UICollectionReusableView 那么就會(huì)出現(xiàn)一個(gè)問題坯屿,在header 的地方你每次刷新他都會(huì)初始化一個(gè) view ,打開界面一看我擦检激,好多個(gè)headerView 重疊在一起了肴捉,于是查了大佬們的方法腹侣,看到都是說判斷這個(gè)view 的subviews.count 如果為0那么就添加你要添加的子視圖。對(duì)這樣是解決了重疊的問題齿穗。
但是問題又來(lái)了傲隶,當(dāng)你刷新的時(shí)候,你會(huì)發(fā)現(xiàn)你的headerView上面的數(shù)據(jù)錯(cuò)亂了缤灵,此時(shí)就應(yīng)該是headerView 的復(fù)用的問題了伦籍。復(fù)用了之后直接將子視圖也復(fù)用了,所以導(dǎo)致數(shù)據(jù)沒有根據(jù)自己的indexPath.section 去賦值腮出。整了半天沒有明白怎么回事帖鸦,然后就自定義了一個(gè)header,完美搞定胚嘲。
代碼:
// headerView 的.m 文件作儿。這個(gè)沒有說的 .h 就一個(gè)屬性
#import "CarcorderHeaderView.h"
@implementation CarcorderHeaderView
- (id)initWithFrame:(CGRect)frame{
self = [super initWithFrame:frame];
if (self){
self.backgroundColor = [[UIColor alloc] initWithRed:1 green:1 blue:1 alpha:0.95];
[self createLab];
}
return self;
}
- (void)createLab{
self.headerLab = [TaoUI createLableWithText:nil backgroundColor:nil textColor:UIColorFromRGB(0x666666) font:16.0 numberOfLines:0 textAlignment:NSTextAlignmentLeft boderColor:nil];
[self addSubview:self.headerLab];
[self.headerLab mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.equalTo(self.mas_left).offset(15);
make.right.top.bottom.equalTo(self);
}];
}
@end
collectionview 注冊(cè)headerView
[self.collectionView registerClass:[CarcorderHeaderView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"headerV"];
接下來(lái)在collectionview 的代理方法中操作headerView;
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{
CarcorderHeaderView *view = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"headerV" forIndexPath:indexPath];
// if (self.dataArr.count == 0) return view; 這里之前沒有注意馋劈,直接return view 的話 刷新會(huì)看到這個(gè)view攻锰,通過下面處理就行了。
if (self.dataArr.count == 0){
view.backgroundColor = [UIColor clearColor];
return view;
}
// 這里就隨便你怎么寫了妓雾。我這個(gè)很簡(jiǎn)單只是一個(gè)日期的展示娶吞。。OK 械姻,headerView 重復(fù)添加的問題搞定妒蛇,數(shù)據(jù)錯(cuò)亂的問題搞定。
NSString *timeStr = ((YourModel*)self.dataArr[indexPath.section][indexPath.row]).startTime
view.headerLab.text = timeStr;
}
希望有好辦法的朋友給個(gè)連接楷拳。
希望能幫助遇到過同樣問題的小伙伴吧绣夺。。
---來(lái)自濤胖子的工作筆記