UICollectionView

在我們的工作過程中默垄,經(jīng)常用到的是UITableView.本文章首先從兩個(gè)方面介紹UICollectionView.首先介紹和UITableView的不同,并且一些基本的用法甚纲,然后會(huì)介紹UICollectionView的自定義layout口锭。

和UITableView不同,一些基本用法

初始化
UITableView直接init就可以了介杆,初始化UICollectionView必須制定layout
tableView初始化

UITableView *tableView = [[UITableView alloc] init];

collectionView初始化

UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init];
    layout.itemSize = CGSizeMake(100, 100);
    layout.minimumLineSpacing = 20;
    layout.minimumInteritemSpacing = 10;
    layout.headerReferenceSize = CGSizeMake(self.view.frame.size.width, 100);
 self.collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) collectionViewLayout:layout];

** collectionView必須自定義collectionViewCell**
tableView和collectionView都有datasource和delegate.所以鹃操,如果獲取cell的方法中,沒有初始化cell春哨,會(huì)報(bào)錯(cuò)
錯(cuò)誤的做法:

 - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
// 如果僅僅這么寫荆隘,是有問題的。在tableview中是沒有問題的
    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
    if (!cell) {
        cell = [[UICollectionViewCell alloc] init];
    }
    
    cell.backgroundColor = [UIColor redColor];
    return cell;
}

正確的做法:

-(void)viewDidLoad {
[self.collectionView registerClass:[MyCollectionViewCell class] forCellWithReuseIdentifier:@"cell"];
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
    MyCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
    if (!cell) {
        cell = [[MyCollectionViewCell alloc] init];
    }
    
    cell.backgroundColor = [UIColor redColor];
    return cell;
}

section header的不同

tableView就不過多的闡述赴背。collectionView增加了Supplementary視圖
首先注冊section header view

[self.collectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"reusableView"];

然后實(shí)現(xiàn)datasource

- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath {
    if ([kind isEqualToString:UICollectionElementKindSectionHeader]) {
        UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"reusableView" forIndexPath:indexPath];
        headerView.backgroundColor = [UIColor blueColor];
        return headerView;
    }
    
    return nil;
}

同時(shí)設(shè)置header的size

// 在初始化layout的時(shí)候
layout.headerReferenceSize = CGSizeMake(self.view.frame.size.width, 100);
自定義CollectionViewLayout

大部分情況下xcode提供的默認(rèn)瀑布流布局UICollectionViewFlowLayout就可以使用椰拒。但是,我們還是介紹一下自定義layout說用到的一些方法
首先 UICollectionView增加了兩種視圖Supplementary(補(bǔ)充試圖)癞尚,我們sectionheaderfooter是用它實(shí)現(xiàn)的耸三,datasource提供了相應(yīng)的delegate

- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath {
    if ([kind isEqualToString:UICollectionElementKindSectionHeader]) {
        UICollectionReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"reusableView" forIndexPath:indexPath];
        headerView.backgroundColor = [UIColor blueColor];
        return headerView;
    }
    
    return nil;
}

還增加了另外一種視圖,裝飾視圖(Decoration)視圖浇揩,這種視圖可以提供諸如背面圖版(backdrop)等視覺增強(qiáng)效果.
有一點(diǎn)要記住的是仪壮,decoration views完全是由layout管理的,與cell或supplementary views不一樣,它不在collection view data source的管轄范圍內(nèi)
下面會(huì)貼出一些代碼胳徽,自定義layout
首先定義繼承于UICollectionViewLayout的自定義layout
.h

@interface MyCollectionViewLayout : UICollectionViewLayout

@end

.m

@implementation MyCollectionViewLayout

- (void)prepareLayout {
    // prepareLayout 準(zhǔn)備一些基本數(shù)據(jù)
    [super prepareLayout];
    [self registerClass:[MyCollectionReusableView class] forDecorationViewOfKind:@"CDV"];
}

- (CGSize)collectionViewContentSize {
    return self.collectionView.frame.size;
}

- (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath {
    // 此方法是設(shè)置每一個(gè)item的一些顯示积锅,是通過layoutAttributesForElementsInRect調(diào)用的
    UICollectionViewLayoutAttributes* attributes = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath ];
    attributes.size = CGSizeMake(215/3.0, 303/3.0);
    
    attributes.center=CGPointMake(80*(indexPath.item+1), 62.5+125*indexPath.section);
    return attributes;
}

- (UICollectionViewLayoutAttributes *)layoutAttributesForDecorationViewOfKind:(NSString *)elementKind atIndexPath:(NSIndexPath *)indexPath {
  // 如果collectionview需要裝飾視圖爽彤,比如背景啊,書架等
    UICollectionViewLayoutAttributes* att = [UICollectionViewLayoutAttributes layoutAttributesForDecorationViewOfKind:elementKind withIndexPath:indexPath];
    
    att.frame=CGRectMake(0, (125*indexPath.section)/2.0, 320, 125);
    att.zIndex=-1;
    
    return att;
}

- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect{
    //  這是最酷的方法缚陷,加載整個(gè)layout的時(shí)候处面,我認(rèn)為它是發(fā)動(dòng)機(jī)
    NSMutableArray* attributes = [NSMutableArray array];
    //把Decoration View的布局加入可見區(qū)域布局西篓。
    for (int y=0; y<3; y++) {
        NSIndexPath* indexPath = [NSIndexPath indexPathForItem:3 inSection:y];
        [attributes addObject:[self layoutAttributesForDecorationViewOfKind:@"CDV"atIndexPath:indexPath]];
    }
    
    for (NSInteger i=0 ; i < 3; i++) {
        for (NSInteger t=0; t<3; t++) {
            NSIndexPath* indexPath = [NSIndexPath indexPathForItem:t inSection:i];
            [attributes addObject:[self layoutAttributesForItemAtIndexPath:indexPath]];
        }
        
    }
    
    return attributes;
}

每個(gè)cell view、supplemental viewdecoration view 都有layout屬性。想要知道layouts如何靈活海铆,只需看看 UICollectionViewLayoutAttributes
對象的特性就知道了:
frame

center

size

transform3D

alpha

zIndex

hidden

屬性由你可能想要的那種委托方法指定:
-layoutAttributesForItemAtIndexPath:

-layoutAttributesForSupplementaryViewOfKind:atIndexPath:

-layoutAttributesForDecorationViewOfKind:atIndexPath:

這是最酷的方法:
-layoutAttributesForElementsInRect:

比較好的文章
http://nshipster.cn/uicollectionview/
Decoration 視圖使用http://kyoworkios.blog.51cto.com/878347/1341549

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末寺董,一起剝皮案震驚了整個(gè)濱河市壁查,隨后出現(xiàn)的幾起案子朴乖,更是在濱河造成了極大的恐慌,老刑警劉巖窜护,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件效斑,死亡現(xiàn)場離奇詭異,居然都是意外死亡柱徙,警方通過查閱死者的電腦和手機(jī)缓屠,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來护侮,“玉大人敌完,你說我怎么就攤上這事⊙虺酰” “怎么了蠢挡?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長凳忙。 經(jīng)常有香客問我,道長禽炬,這世上最難降的妖魔是什么涧卵? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮腹尖,結(jié)果婚禮上柳恐,老公的妹妹穿的比我還像新娘。我一直安慰自己热幔,他們只是感情好乐设,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著绎巨,像睡著了一般近尚。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上场勤,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天戈锻,我揣著相機(jī)與錄音歼跟,去河邊找鬼。 笑死格遭,一個(gè)胖子當(dāng)著我的面吹牛哈街,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播拒迅,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼骚秦,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了璧微?” 一聲冷哼從身側(cè)響起作箍,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎往毡,沒想到半個(gè)月后蒙揣,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡开瞭,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年懒震,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片嗤详。...
    茶點(diǎn)故事閱讀 38,059評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡个扰,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出葱色,到底是詐尸還是另有隱情递宅,我是刑警寧澤,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布苍狰,位于F島的核電站办龄,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏淋昭。R本人自食惡果不足惜俐填,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望翔忽。 院中可真熱鬧英融,春花似錦、人聲如沸歇式。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽材失。三九已至痕鳍,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間龙巨,已是汗流浹背额获。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工够庙, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人抄邀。 一個(gè)月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓耘眨,卻偏偏與公主長得像,于是被迫代替她去往敵國和親境肾。 傳聞我的和親對象是個(gè)殘疾皇子剔难,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,792評論 2 345

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