天天看點

iOS6 UICollectionView介紹

1.1. Collection View

全家福:

UICollectionView, UITableView, NSCollectionView

n   不直接等效于NSCollectionView

n   也不替代UITableView----親兄弟

為什麼要使用Collection Views呢?

n  可以高度定制内容的展現

n  管理資料最佳的做法

n  即使是處理大量資料,也非常的高效

我們先來感性的認識一下Collection Views,下面這幅圖就是用Collection Views實作的一個照片牆顯示。

iOS6 UICollectionView介紹

1.1.1 Collection View 元素

iOS6 UICollectionView介紹

從上圖中,我們可以看出Collection View的整體構成元素,共有三個要素,分别如下

n Cells(單元格)

n Supplementary Views(補充的view,相當于TableView的頁眉和頁腳)

n Decoration Views(裝飾View,用于裝飾整個CollectionView的)

我們可以分解一下這個照片牆,來描述上面的三個元素都對應什麼内容

Cells如下圖,即每一張圖檔

iOS6 UICollectionView介紹

SupplementaryViews如下圖右邊白色的文字部分

iOS6 UICollectionView介紹

Decoration Views如下圖

iOS6 UICollectionView介紹

最終,三個元素,就構成了照片牆,下面是元素構成圖

iOS6 UICollectionView介紹

1.1.2 資料模型與互動

資料模型(資料提供者UICollectionViewDataSource)

UICollectionViewDataSource是一個代理,主要用于向Collection View提供資料。

UICollectionViewDataSource的主要功能:

n  Section數目

n  Section裡面有多少item

n  提供Cell和supplementary view設定

下面我們依次講解這些功能。

1、numberOfSectionsInCollectionView:

下圖中有多少個sections呢?

答案是2個。即我們在numberOfSectionsInCollectionView:方法中傳回2即可。

iOS6 UICollectionView介紹

2、collectionView:numberOfItemsInSection:

下圖中section0中有多少個items呢?

答案是4個。即我們在collectionView:numberOfItemsInSection:方法中對應的section 0傳回4即可。

3、collectionView:cellForItemAtIndexPath:

下圖中section0 item 0位置處應該顯示什麼内容呢?

答案是使用方法collectionView:cellForItemAtIndexPath:傳回一個cell,類似下圖中的一個view。

iOS6 UICollectionView介紹

4、Cell和View的重用

下面通過5個步驟,來示範Cell和View的重用

1)如下圖,左邊是Collection View,右邊是Cell和View的重用隊列,剛開始,左邊的資料顯示内容,右邊的重用隊列還沒有資料。

iOS6 UICollectionView介紹

2)再看下圖,當使用者顯示出了Collection View下面的内容後,Collection View中之前的一些Cell和View就已經不再被顯示了,這是,系統是如何處理呢?

iOS6 UICollectionView介紹

3)看這裡,系統會把不用的Cell和View添加到重用隊列中,以備後面使用。

iOS6 UICollectionView介紹

4)如何再次被使用呢,請看下圖,當使用者繼續往下看内容的時候,系統就會提供隊列中存在的Cell和View供使用。

iOS6 UICollectionView介紹

5)最終使用效果如下圖

iOS6 UICollectionView介紹

5、iOS6中,Cell重用改善

在iOS6中,我們可以更加友善的使用Cell,系統總是為我們初始化Cell。我們可以直接使用。隻需要簡單的按照兩步走即可:

1)  必須使用下面的方法進行Cell類的注冊:

- (void)registerClass:forCellWithReuseIdentifier:

- (void)registerClass:forSupplementaryViewOfKind:withReuseIdentifier:

- (void)registerNib:forCellWithReuseIdentifier:

- (void)registerNib:forSupplementaryViewOfKind:withReuseIdentifier:

2)  從隊列中取出一個Cell,具體方法如下:

-(id)dequeueReusableCellWithReuseIdentifier:forIndexPath:

-(id)dequeueReusableSupplementaryViewOfKind:withReuseIdentifier:forIndexPath:

下面我們通過實際的代碼,來示範具體如何進行Cell的重用

第一步:在collection view中進行設定(Cell類的注冊)

// In collectionview setup...

[collectionView registerClass:[MyCellclass]

forCellWithReuseIdentifier:@”MY_CELL_ID”]

第二步:在下面的函數中,從隊列中取出一個cell即可。并且再也不用對cell進行空值判斷,以做額外的初始化操作。Cell的一切初始化工作都由系統為我們做好了。我們隻需要對cell進行一些指派等操作即可。

-(UICollectionView*)collectionView:(UICollectionView*)cv

cellForItemAtIndexPath:(NSIndexPath*)indexPath

{

MyCell *cell =[cv dequeueReusableCellWithReuseIdentifier:@”MY_CELL_ID”];

if (!cell) {

// Well, nothingreally. Never again

}

// Configure thecell's content

cell.imageView.image= ...

return cell;

}

互動(UICollectionViewDelegate)

UICollectionViewDelegate的主要功能:

n  控制cell的高亮

n  控制cell的選擇

n  在cell上支援菜單操作,如下圖

iOS6 UICollectionView介紹

選擇和高亮在iOS中都有所改進,高亮和flow的精确定位都非常好控制。

下面列出了常用的相關方法,開發者可以參考sdk的幫助文檔,進行詳細了解。

1) 管理cell的高亮

collectionView:shouldHighlightItemAtIndexPath:

collectionView:didHighlightItemAtIndexPath:

collectionView:didUnhighlightItemAtIndexPath:

這個方法collectionView:shouldHighlightItemAtIndexPath:的效果如下圖所示:注意右邊selected和highlighted的值。

iOS6 UICollectionView介紹

這個方法collectionView:didHighlightItemAtIndexPath:的效果如下圖所示:注意右邊selected和highlighted的值。

iOS6 UICollectionView介紹

2) 管理cell的選擇

collectionView:shouldSelectItemAtIndexPath:

collectionView:didSelectItemAtIndexPath:

collectionView:shouldDeselectItemAtIndexPath:

collectionView:didDeselectItemAtIndexPath:

collectionView:shouldSelectItemAtIndexPath:的效果如下圖

iOS6 UICollectionView介紹

下面兩個方法

collectionView:didUnhighlightItemAtIndexPath:

collectionView:didSelectItemAtIndexPath:的效果如下圖所示:

iOS6 UICollectionView介紹

1.1.3 内容的顯示

UICollectionViewCell Styles

iOS6中沒有預定義cell的Style

Collection View跟蹤cell的選擇和高亮

      通過設定cell的highlight和selection屬性(包含子視圖)

      如果進行了相關配置,這可以切換background view和selected background view

我們來按順序看下面四幅圖。開發者可以自行領悟規律。

iOS6 UICollectionView介紹
iOS6 UICollectionView介紹
iOS6 UICollectionView介紹
iOS6 UICollectionView介紹

下圖是UICollectionView相關的類圖,從圖中我們可以看到

l UICollectionView繼承自UIScrollView,

l 尊循UICollectionViewDelegate和UICollectionViewDataSource兩個協定

l 管理UICollectionViewCell

iOS6 UICollectionView介紹

圖中貌似還缺點東西,什麼呢?對了,就是缺少Layout。我們需要Layout對cell和其它的view進行布局。再看下圖,圖中多了UICollectionViewLayout和UICollectionViewFlowLayout。

iOS6 UICollectionView介紹

下面我們對UICollectionViewLayout進行介紹

使用自己的layout(UICollectionViewLayout)

UICollectionViewLayout是一個抽象基類,你需要繼承自他,來為collection view生成layout資訊。Layout對象的作用是決定cells,Supplementary views和Decorationviews在collection view中的布局位置。

你需要計算如下view的layout屬性

n  Cells

n  Supplementary views

n  Decoration views

系統也為我們定義了layout屬性,即UICollectionViewLayoutAttributes,它主要包括如下内容:

n  位置

n  大小

n  透明度

n  ZIndex

n  轉場

如下面的兩個圖是collection view的layout。

iOS6 UICollectionView介紹
iOS6 UICollectionView介紹

1.2 Flow Layout

1.2.1 核心概念

UICollectionViewFlowLayout是一個具體的layout對象,用來把item布局在網格中,并且可選頁眉和頁腳。在collection view中的items,可以從一行或者一列flow至下一行或者下一列(行或者列取決于滾動的方向)。每行都會根據情況,包含盡可能多的Cells。Cells可以是相同的尺寸,也可以是不同的尺寸。

下面是Flow Layout的一些特性

n 面向線性布局

n 可配置為網格

n 一組lines

n 具有頁眉和頁腳

1.2.2 自定義 Flow Layout

Flow Layout可以定制的主要功能如下

n Item size

n Line spacing

n Inter cell spacing

n Scrolling direction

n Header and footer size

n Section Inset

下面我們來詳細介紹這些可定制的功能。

這裡需要對通過全局和delegate定制進行說明一下:

幾乎所有的定制屬性都是在UICollectionViewFlowLayout中,delegate實際上是collection view的delegate。UICollectionViewDelegateFlowLayout隻是對UICollectionViewDelegate進行了一些擴充。

Item size(每個item的大小)

1、  可以進行全局配置,如下代碼

@property(CGSize)itemSize

layout.itemSize= CGSizeMake(30,20);

2、  也可以通過delegate對每一個item進行配置,如下代碼

collectionView:layout:sizeForItemAt

IndexPath:

{

return...;

}

效果如下圖所示

iOS6 UICollectionView介紹

Line spacing(每行的間距)

1、  可以進行全局配置,如下屬性

@property(CGFloat) minimumLineSpacing

2、  也可以通過delegate對每一個section進行配置,如下代碼

ollectionView:layout:minimumLineSpacingForSectionAtIndex:

請按順序看下面的三個圖

iOS6 UICollectionView介紹
iOS6 UICollectionView介紹
iOS6 UICollectionView介紹

Inter cell spacing(每行内部cell item的間距)

1、  可以進行全局配置,如下屬性

@property(CGFloat) minimumInteritemSpacing

2、  也可以通過delegate對每一個section進行配置,如下代碼

collectionView:layout:minimumInteritemSpacingForSectionAtIndex:

看看下面的兩個圖,藍色是實際的item間距,綠色的是最小item間距。

iOS6 UICollectionView介紹
iOS6 UICollectionView介紹

Scrolling direction(滾動方向)

設定scrollDirection屬性即可。兩個值如下

UICollectionViewScrollDirectionVertical

UICollectionViewScrollDirectionHorizontal

主要作用:

n  定義了Flow Layout的基本行為

n  控制頁眉頁腳的次元

UICollectionViewScrollDirectionVertical效果如下圖所示

iOS6 UICollectionView介紹

UICollectionViewScrollDirectionHorizontal效果如下圖所示

iOS6 UICollectionView介紹

Header and footer size(頁眉和頁腳大小)

下面是頁眉和頁腳的一些解釋。

n 也就是supplementary views

n 通過資料源的方法來提供内容,如下

-collectionView:viewForSupplementaryElementOfKind:atIndexPath:

n 兩種常量(類型)

UICollectionElementKindSectionHeader

UICollectionElementKindSectionFooter

n 同樣需要注冊一個類并從隊列中取出view

- registerClass:forSupplementaryViewOfKind:withReuseIdentifier:

-registerNib:forSupplementaryViewOfKind:withReuseIdentifier:

-dequeueReusableSupplementaryViewOfKind:withReuseIdentifier:forIndexPath:

頁眉和頁腳的size配置方式:

1)可以全局配置,如下屬性

@property(CGSize) headerReferenceSize

@property(CGSize) footerReferenceSize

2)也可以通過delegate對每一個section進行配置,如下代碼

collectionView:layout:referenceSizeForHeaderInSection:

collectionView:layout:referenceSizeForFooterInSection:

頁眉頁腳的屬性如下圖

iOS6 UICollectionView介紹

當垂直的時候,需要設定Height,如下圖

iOS6 UICollectionView介紹

當水準的時候,需要設定Width,如下圖

iOS6 UICollectionView介紹

Section Inset

我們先通過兩個圖來看看Sections Insets是怎麼回事

iOS6 UICollectionView介紹
iOS6 UICollectionView介紹

從上面的兩個圖中,我們大概知道了,Section Inset就是某個section中cell的邊界範圍。

SectionInset的配置方式同樣有兩種

1、  通過全局配置,如下屬性

@propertyUIEdgeInsets sectionInset;

2、  也通過delegate對每一個section進行配置,如下函數

- (UIEdgeInsets)collectionView:layout:insetForSectionAtIndex:

DEMO

iOS6 UICollectionView介紹