IOS-自定義CollectionView的layout以及添加頭部

  • 先看例子挨下,再看知識(shí)點(diǎn)


    成型的collectionView
  • 在viewDidLoad里
- (void)viewDidLoad {
    [super viewDidLoad];
    //這里從本地獲取數(shù)據(jù)存在數(shù)組self.Array里
    NSArray * shopsArray = [shopModel mj_objectArrayWithFilename:@"1.plist"];
    [self.Array addObjectsFromArray:shopsArray];
    
    //這是自定義瀑布流
    FlowLayout *flowlayout1 = [[FlowLayout alloc] init];
    //這個(gè)代理為了能夠根據(jù)數(shù)組內(nèi)圖片的寬高等比縮放
    flowlayout1.delegate = self;
    self.mainView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) collectionViewLayout:flowlayout1];
    self.mainView.backgroundColor = [UIColor redColor];
    self.mainView.delegate = self;
    self.mainView.dataSource = self;
    self.mainView.scrollEnabled = YES;
    
    [self.view addSubview:self.mainView];
    //注冊(cè)一個(gè)Cell
    [self.mainView registerClass:[CollectionCell class] forCellWithReuseIdentifier:@"CollectionCell"];
    //注冊(cè)一個(gè)ReusableView,類型是UICollectionElementKindSectionHeader的(頭部)
    [self.mainView registerClass:[headReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"headReusableView"];
    //注冊(cè)一個(gè)ReusableView,類型是UICollectionElementKindSectionFooter的(尾部)
//    [self.mainView registerClass:[footReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"footReusableView"];
    
}
  • collectionView的代理
#pragma mark  設(shè)置CollectionView的組數(shù)
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{
    return 1;
}
#pragma mark  設(shè)置CollectionView每組所包含的個(gè)數(shù)
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
    return self.Array.count;
}
#pragma mark  設(shè)置CollectionView所展示出來的cell
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
    CollectionCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"CollectionCell" forIndexPath:indexPath];
    cell.model = self.Array[indexPath.item];
    return cell;
}
#pragma mark  定義每個(gè)UICollectionView的大小
//- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath{
//    return CGSizeMake(100, 100);
//}
#pragma mark  定義整個(gè)CollectionViewCell與整個(gè)View的間距
//- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section{
//    return UIEdgeInsetsMake(10, 10, 10, 10);
//}
#pragma mark  設(shè)置CollectionViewCell是否可以被點(diǎn)擊
//- (BOOL)collectionView:(UICollectionView *)collectionView shouldSelectItemAtIndexPath:(NSIndexPath *)indexPath{
//    return YES;
//}
#pragma mark  點(diǎn)擊CollectionView觸發(fā)事件
-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"---------------------");
}
#pragma mark headView大小
- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section{
    return CGSizeMake(self.view.frame.size.width, 100);
}
//#pragma mark footView大小
//- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section{
//    return CGSizeMake(self.view.frame.size.width, 80);
//}
#pragma mark headView和footView都在這里判斷
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{
    headReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"headReusableView" forIndexPath:indexPath];
//    footReusableView *footerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"footReusableView" forIndexPath:indexPath];
//    [footerView.btn1 addTarget:self action:@selector(btn1Click) forControlEvents:UIControlEventTouchUpInside];
    [headerView.Btn1 addTarget:self action:@selector(Btn1Click) forControlEvents:UIControlEventTouchUpInside];
//    if ([kind isEqualToString:UICollectionElementKindSectionHeader]) {
        return headerView;
//    }else{
//        return footerView;
//    }
}
  • 自己定義的代理(為了計(jì)算等比寬高)
#pragma mark wxzFlowLayoutDelegate
- (CGFloat)WXZWaterFlow:(UICollectionViewFlowLayout *)waterFlow heightForWidth:(CGFloat)width atIndexPath:(NSIndexPath *)indexPath{
    shopModel *model = self.Array[indexPath.item];
    return model.h * width / model.w ;
}
  • 在UICollectionViewFlowLayout.h中
#import <UIKit/UIKit.h>
@class UICollectionViewFlowLayout;

@protocol WXZWaterFlowDelegte <NSObject>
- (CGFloat)WXZWaterFlow:(UICollectionViewFlowLayout *)waterFlow heightForWidth:(CGFloat)width atIndexPath:(NSIndexPath *)indexPath;
@end

@interface FlowLayout : UICollectionViewFlowLayout

@property(weak, nonatomic)id<WXZWaterFlowDelegte>delegate;

@end
  • 在UICollectionViewFlowLayout.m中
#import "FlowLayout.h"

#define WXZCollectionW self.collectionView.frame.size.width

/** 每一行之間的間距 */
static const CGFloat  WXZDefaultRowMargin = 5;
/** 每一列之間的間距 */
static const CGFloat  WXZDefaultColumnMargin = 10;
/** 每一列之間的間距 top, left, bottom, right */
static const UIEdgeInsets  WXZDefaultInsets = {5, 15, 5, 5};
/** 默認(rèn)的列數(shù) */
static const int WXZDefaultColumsCount = 2;

@interface FlowLayout()
/** 每一列的最大Y值 */
@property (nonatomic, strong) NSMutableArray *columnMaxYs;
/** 存放所有cell的布局屬性 */
@property (nonatomic, strong) NSMutableArray *attrsArray;

@property (nonatomic, strong) NSArray *heightArray;

@end

@implementation FlowLayout
#pragma mark -lazy
- (NSMutableArray *)columnMaxYs
{
    if (!_columnMaxYs) {
        _columnMaxYs = [[NSMutableArray alloc] init];
    }
    return _columnMaxYs;
}

- (NSMutableArray *)attrsArray
{
    if (!_attrsArray) {
        _attrsArray = [[NSMutableArray alloc] init];
    }
    return _attrsArray;
}

- (NSArray *)heightArray
{
    if (!_heightArray) {
        _heightArray = [[NSArray alloc] init];
        _heightArray = @[@85,@105,@115,@105];
    }
    return _heightArray;
}

#pragma mark - 實(shí)現(xiàn)內(nèi)部的方法
/**
 * 決定了collectionView的contentSize抑进。由于collectionView將item的布局任務(wù)委托給layout對(duì)象巷燥,那么滾動(dòng)區(qū)域的大小對(duì)于它而言是不可知的衣式。自定義的布局對(duì)象必須在這個(gè)方法里面計(jì)算出顯示內(nèi)容的大小,包括supplementaryView和decorationView在內(nèi)谜诫。
 */
- (CGSize)collectionViewContentSize
{
    // 找出最長(zhǎng)那一列的最大Y值
    CGFloat destMaxY = [self.columnMaxYs[0] doubleValue];
    for (NSUInteger i = 1; i<self.columnMaxYs.count; i++) {
        // 取出第i列的最大Y值
        CGFloat columnMaxY = [self.columnMaxYs[i] doubleValue];
        
        // 找出數(shù)組中的最大值
        if (destMaxY < columnMaxY) {
            destMaxY = columnMaxY;
        }
    }
    return CGSizeMake(0, destMaxY + WXZDefaultInsets.bottom);
}
/**
 * 系統(tǒng)在準(zhǔn)備對(duì)item進(jìn)行布局前會(huì)調(diào)用這個(gè)方法,我們重寫這個(gè)方法之后可以在方法里面預(yù)先設(shè)置好需要用到的變量屬性等攻旦。比如在瀑布流開始布局前喻旷,我們可以對(duì)存儲(chǔ)瀑布流高度的數(shù)組進(jìn)行初始化。有時(shí)我們還需要將布局屬性對(duì)象進(jìn)行存儲(chǔ)牢屋,比如卡片動(dòng)畫式的定制且预,也可以在這個(gè)方法里面進(jìn)行初始化數(shù)組。切記要調(diào)用[super prepareLayout];
 */
//
- (void)prepareLayout
{
    [super prepareLayout];
    
    // 重置每一列的最大Y值
    [self.columnMaxYs removeAllObjects];
    for (NSUInteger i = 0; i<WXZDefaultColumsCount; i++) {
        [self.columnMaxYs addObject:@(WXZDefaultInsets.top)];
    }
    
    // 計(jì)算所有cell的布局屬性
    [self.attrsArray removeAllObjects];
    NSUInteger count = [self.collectionView numberOfItemsInSection:0];
    for (NSUInteger i = 0; i < count; ++i) {
        NSIndexPath *indexPath = [NSIndexPath indexPathForItem:i inSection:0];
        UICollectionViewLayoutAttributes *attrs = [self layoutAttributesForItemAtIndexPath:indexPath];
        [self.attrsArray addObject:attrs];
    }
}
/**
 * 說明所有元素(比如cell伟阔、補(bǔ)充控件辣之、裝飾控件)的布局屬性。個(gè)人覺得完成定制布局最核心的方法皱炉,沒有之一怀估。collectionView調(diào)用這個(gè)方法并將自身坐標(biāo)系統(tǒng)中的矩形傳過來,這個(gè)矩形代表著當(dāng)前collectionView可視的范圍合搅。我們需要在這個(gè)方法里面返回一個(gè)包括UICollectionViewLayoutAttributes對(duì)象的數(shù)組多搀,這個(gè)布局屬性對(duì)象決定了當(dāng)前顯示的item的大小、層次灾部、可視屬性在內(nèi)的布局屬性康铭。同時(shí),這個(gè)方法還可以設(shè)置supplementaryView和decorationView的布局屬性赌髓。合理使用這個(gè)方法的前提是不要隨便返回所有的屬性从藤,除非這個(gè)view處在當(dāng)前collectionView的可視范圍內(nèi),又或者大量額外的計(jì)算造成的用戶體驗(yàn)下降——你加班的原因锁蠕。
 */
- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect
{
    //找到collectionVIew的頭部headReusableView并且添加到數(shù)組里夷野,這樣子就能夠顯示出頭部里
    [self.attrsArray addObjectsFromArray:[super layoutAttributesForElementsInRect:rect]];
    return self.attrsArray;
}

/**
 * 說明cell的布局屬性,相當(dāng)重要的方法。collectionView可能會(huì)為了某些特殊的item請(qǐng)求特殊的布局屬性荣倾,我們可以在這個(gè)方法中創(chuàng)建并且返回特別定制的布局屬性悯搔。根據(jù)傳入的indexPath調(diào)用[UICollectionViewLayoutAttributes layoutAttributesWithIndexPath: ]方法來創(chuàng)建屬性對(duì)象,然后設(shè)置創(chuàng)建好的屬性舌仍,包括定制形變妒貌、位移等動(dòng)畫效果在內(nèi)
 */
- (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath
{
    UICollectionViewLayoutAttributes *attrs = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
    
    /** 計(jì)算indexPath位置cell的布局屬性 */
    
    // 水平方向上的總間距
    CGFloat xMargin = WXZDefaultInsets.left + WXZDefaultInsets.right + (WXZDefaultColumsCount - 1) * WXZDefaultColumnMargin;
    // cell的寬度
    
    CGFloat w = (WXZCollectionW - xMargin - 20) / WXZDefaultColumsCount;
    // cell的高度
    CGFloat h = [self.delegate WXZWaterFlow:self heightForWidth:w atIndexPath:indexPath];
    
    // 找出最短那一列的 列號(hào) 和 最大Y值  要判斷第一個(gè)才+363
    CGFloat destMaxY = [self.columnMaxYs[0] doubleValue];
    NSUInteger destColumn = 0;
    for (NSUInteger i = 1; i<self.columnMaxYs.count; i++) {
        // 取出第i列的最大Y值
        CGFloat columnMaxY = [self.columnMaxYs[i] doubleValue];
        
        // 找出數(shù)組中的最小值
        if (destMaxY > columnMaxY) {
            destMaxY = columnMaxY;
            destColumn = i;
        }
    }
    
    // cell的x值
    CGFloat x = WXZDefaultInsets.left + destColumn * (w + WXZDefaultColumnMargin);
    
    CGFloat y = destMaxY + WXZDefaultRowMargin;
    
    // cell的frame
    attrs.frame = CGRectMake(x, y, w, h);
    
    // cell的y值
    if (destMaxY==5) {
        //手動(dòng)增加第一個(gè)cell的高通危,如果不增加 ,那么cell是從頂部開始 灌曙。會(huì)與頭部相疊
        attrs.frame = CGRectMake(x, 120, w, h);
    }
    
    // 更新數(shù)組中的最大Y值
    self.columnMaxYs[destColumn] = @(CGRectGetMaxY(attrs.frame));
    
    return attrs;
}

//- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds
當(dāng)collectionView的bounds改變的時(shí)候菊碟,我們需要告訴collectionView是否需要重新計(jì)算布局屬性,通過這個(gè)方法返回是否需要重新計(jì)算的結(jié)果在刺。簡(jiǎn)單的返回YES會(huì)導(dǎo)致我們的布局在每一秒都在進(jìn)行不斷的重繪布局框沟,造成額外的計(jì)算任務(wù)。
- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds{
    //    NSLog(@"%s",__func__);
    return NO;
}
@end
  • 你可以在CollectionView的頭部headReusableView里添加任何東西 增炭,他繼承自UIView忍燥,如果你的CollectionView的FlowLayout是系統(tǒng)自定義的,那么你就不需要再將自定義的headReusableView添加進(jìn)FlowLayout的數(shù)組里了隙姿。系統(tǒng)已經(jīng)將你想要的做好了梅垄。
  • CollectionView非常好用,建議多多的學(xué)習(xí)输玷。有如下擴(kuò)展:對(duì)每一張圖片的介紹文字有多有少队丝。那么我們的高度還是圖片高度+字體所對(duì)應(yīng)的大小

    擴(kuò)展
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市欲鹏,隨后出現(xiàn)的幾起案子机久,更是在濱河造成了極大的恐慌,老刑警劉巖赔嚎,帶你破解...
    沈念sama閱讀 206,311評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件膘盖,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡尤误,警方通過查閱死者的電腦和手機(jī)侠畔,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來损晤,“玉大人软棺,你說我怎么就攤上這事∮妊” “怎么了喘落?”我有些...
    開封第一講書人閱讀 152,671評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)最冰。 經(jīng)常有香客問我瘦棋,道長(zhǎng),這世上最難降的妖魔是什么锌奴? 我笑而不...
    開封第一講書人閱讀 55,252評(píng)論 1 279
  • 正文 為了忘掉前任兽狭,我火速辦了婚禮憾股,結(jié)果婚禮上鹿蜀,老公的妹妹穿的比我還像新娘箕慧。我一直安慰自己,他們只是感情好茴恰,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,253評(píng)論 5 371
  • 文/花漫 我一把揭開白布颠焦。 她就那樣靜靜地躺著,像睡著了一般往枣。 火紅的嫁衣襯著肌膚如雪伐庭。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,031評(píng)論 1 285
  • 那天分冈,我揣著相機(jī)與錄音圾另,去河邊找鬼。 笑死雕沉,一個(gè)胖子當(dāng)著我的面吹牛集乔,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播坡椒,決...
    沈念sama閱讀 38,340評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼扰路,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了倔叼?” 一聲冷哼從身側(cè)響起汗唱,我...
    開封第一講書人閱讀 36,973評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎丈攒,沒想到半個(gè)月后哩罪,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,466評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡巡验,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,937評(píng)論 2 323
  • 正文 我和宋清朗相戀三年识椰,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片深碱。...
    茶點(diǎn)故事閱讀 38,039評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡腹鹉,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出敷硅,到底是詐尸還是另有隱情功咒,我是刑警寧澤,帶...
    沈念sama閱讀 33,701評(píng)論 4 323
  • 正文 年R本政府宣布绞蹦,位于F島的核電站力奋,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏幽七。R本人自食惡果不足惜景殷,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,254評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧猿挚,春花似錦咐旧、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至办绝,卻和暖如春伊约,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背孕蝉。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評(píng)論 1 262
  • 我被黑心中介騙來泰國(guó)打工屡律, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人降淮。 一個(gè)月前我還...
    沈念sama閱讀 45,497評(píng)論 2 354
  • 正文 我出身青樓疹尾,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親骤肛。 傳聞我的和親對(duì)象是個(gè)殘疾皇子纳本,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,786評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容