10.iOS流布局UICollectionView介紹1

UICollectionView的簡介和簡單使用:http://my.oschina.net/u/2340880/blog/522613
一沥阳、簡介

    UICollectionView是iOS6之后引入的一個新的UI控件自点,它和UITableView有著諸多的相似之處,其中許多代理方法都十分類似功炮。簡單來說术唬,UICollectionView是比UITbleView更加強(qiáng)大的一個UI控件粗仓,有如下幾個方面:

1设捐、支持水平和垂直兩種方向的布局

2塘淑、通過layout配置方式進(jìn)行布局

3朴爬、類似于TableView中的cell特性外,CollectionView中的Item大小和位置可以自由定義

4召噩、通過layout布局回調(diào)的代理方法,可以動態(tài)的定制每個item的大小和collection的大體布局屬性

5凹嘲、更加強(qiáng)大一點周蹭,完全自定義一套layout布局方案疲恢,可以實現(xiàn)意想不到的效果

二、UICollectionView中的常用方法和屬性

//通過一個布局策略初始化CollectionView
- (instancetype)initWithFrame:(CGRect)frame collectionViewLayout:(UICollectionViewLayout *)layout;

//獲取和設(shè)置collection的layout
@property (nonatomic, strong) UICollectionViewLayout *collectionViewLayout;

//數(shù)據(jù)源和代理
@property (nonatomic, weak, nullable) id <UICollectionViewDelegate> delegate;
@property (nonatomic, weak, nullable) id <UICollectionViewDataSource> dataSource;

//從一個class或者xib文件進(jìn)行cell(item)的注冊
- (void)registerClass:(nullable Class)cellClass forCellWithReuseIdentifier:(NSString *)identifier;
- (void)registerNib:(nullable UINib *)nib forCellWithReuseIdentifier:(NSString *)identifier;

//下面兩個方法與上面相似棚愤,這里注冊的是頭視圖或者尾視圖的類
//其中第二個參數(shù)是設(shè)置 頭視圖或者尾視圖 系統(tǒng)為我們定義好了這兩個字符串
//UIKIT_EXTERN NSString *const UICollectionElementKindSectionHeader NS_AVAILABLE_IOS(6_0);
//UIKIT_EXTERN NSString *const UICollectionElementKindSectionFooter NS_AVAILABLE_IOS(6_0);
- (void)registerClass:(nullable Class)viewClass forSupplementaryViewOfKind:(NSString *)elementKind withReuseIdentifier:(NSString *)identifier;
- (void)registerNib:(nullable UINib *)nib forSupplementaryViewOfKind:(NSString *)kind withReuseIdentifier:(NSString *)identifier;

//這兩個方法是從復(fù)用池中取出cell或者頭尾視圖
- (__kindof UICollectionViewCell *)dequeueReusableCellWithReuseIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath;
- (__kindof UICollectionReusableView *)dequeueReusableSupplementaryViewOfKind:(NSString *)elementKind withReuseIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath;

//設(shè)置是否允許選中 默認(rèn)yes
@property (nonatomic) BOOL allowsSelection;

//設(shè)置是否允許多選 默認(rèn)no
@property (nonatomic) BOOL allowsMultipleSelection;

//獲取所有選中的item的位置信息
- (nullable NSArray<NSIndexPath *> *)indexPathsForSelectedItems; 

//設(shè)置選中某一item宛畦,并使視圖滑動到相應(yīng)位置次和,scrollPosition是滑動位置的相關(guān)參數(shù)那伐,如下:
/*
typedef NS_OPTIONS(NSUInteger, UICollectionViewScrollPosition) {
    //無
    UICollectionViewScrollPositionNone                 = 0,
    //垂直布局時使用的 對應(yīng)上中下
    UICollectionViewScrollPositionTop                  = 1 << 0,
    UICollectionViewScrollPositionCenteredVertically   = 1 << 1,
    UICollectionViewScrollPositionBottom               = 1 << 2,
    //水平布局時使用的  對應(yīng)左中右
    UICollectionViewScrollPositionLeft                 = 1 << 3,
    UICollectionViewScrollPositionCenteredHorizontally = 1 << 4,
    UICollectionViewScrollPositionRight                = 1 << 5
};
*/
- (void)selectItemAtIndexPath:(nullable NSIndexPath *)indexPath animated:(BOOL)animated scrollPosition:(UICollectionViewScrollPosition)scrollPosition;

//將某一item取消選中
- (void)deselectItemAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated;

//重新加載數(shù)據(jù)
- (void)reloadData;

//下面這兩個方法罕邀,可以重新設(shè)置collection的布局,后面的方法多了一個布局完成后的回調(diào)燃少,iOS7后可以用
//使用這兩個方法可以產(chǎn)生非常炫酷的動畫效果
- (void)setCollectionViewLayout:(UICollectionViewLayout *)layout animated:(BOOL)animated;
- (void)setCollectionViewLayout:(UICollectionViewLayout *)layout animated:(BOOL)animated completion:(void (^ __nullable)(BOOL finished))completion NS_AVAILABLE_IOS(7_0);

//下面這些方法更加強(qiáng)大,我們可以對布局更改后的動畫進(jìn)行設(shè)置
//這個方法傳入一個布局策略layout阵具,系統(tǒng)會開始進(jìn)行布局渲染,返回一個UICollectionViewTransitionLayout對象
//這個UICollectionViewTransitionLayout對象管理動畫的相關(guān)屬性怕敬,我們可以進(jìn)行設(shè)置
- (UICollectionViewTransitionLayout *)startInteractiveTransitionToCollectionViewLayout:(UICollectionViewLayout *)layout completion:(nullable UICollectionViewLayoutInteractiveTransitionCompletion)completion NS_AVAILABLE_IOS(7_0);
//準(zhǔn)備好動畫設(shè)置后揣炕,我們需要調(diào)用下面的方法進(jìn)行布局動畫的展示畸陡,之后會調(diào)用上面方法的block回調(diào)
- (void)finishInteractiveTransition NS_AVAILABLE_IOS(7_0);
//調(diào)用這個方法取消上面的布局動畫設(shè)置虽填,之后也會進(jìn)行上面方法的block回調(diào)
- (void)cancelInteractiveTransition NS_AVAILABLE_IOS(7_0);

//獲取分區(qū)數(shù)
- (NSInteger)numberOfSections;

//獲取某一分區(qū)的item數(shù)
- (NSInteger)numberOfItemsInSection:(NSInteger)section;

//下面兩個方法獲取item或者頭尾視圖的layout屬性,這個UICollectionViewLayoutAttributes對象
//存放著布局的相關(guān)數(shù)據(jù)牲览,可以用來做完全自定義布局恶守,后面博客會介紹
- (nullable UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath;
- (nullable UICollectionViewLayoutAttributes *)layoutAttributesForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath;

//獲取某一點所在的indexpath位置
- (nullable NSIndexPath *)indexPathForItemAtPoint:(CGPoint)point;

//獲取某個cell所在的indexPath
- (nullable NSIndexPath *)indexPathForCell:(UICollectionViewCell *)cell;

//根據(jù)indexPath獲取cell
- (nullable UICollectionViewCell *)cellForItemAtIndexPath:(NSIndexPath *)indexPath;

//獲取所有可見cell的數(shù)組
- (NSArray<__kindof UICollectionViewCell *> *)visibleCells;

//獲取所有可見cell的位置數(shù)組
- (NSArray<NSIndexPath *> *)indexPathsForVisibleItems;

//下面三個方法是iOS9中新添加的方法兔港,用于獲取頭尾視圖
- (UICollectionReusableView *)supplementaryViewForElementKind:(NSString *)elementKind atIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(9_0);
- (NSArray<UICollectionReusableView *> *)visibleSupplementaryViewsOfKind:(NSString *)elementKind NS_AVAILABLE_IOS(9_0);
- (NSArray<NSIndexPath *> *)indexPathsForVisibleSupplementaryElementsOfKind:(NSString *)elementKind NS_AVAILABLE_IOS(9_0);

//使視圖滑動到某一位置,可以帶動畫效果
- (void)scrollToItemAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UICollectionViewScrollPosition)scrollPosition animated:(BOOL)animated;

//下面這些方法用于動態(tài)添加岔绸,刪除,移動某些分區(qū)獲取items
- (void)insertSections:(NSIndexSet *)sections;
- (void)deleteSections:(NSIndexSet *)sections;
- (void)reloadSections:(NSIndexSet *)sections;
- (void)moveSection:(NSInteger)section toSection:(NSInteger)newSection;

- (void)insertItemsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths;
- (void)deleteItemsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths;
- (void)reloadItemsAtIndexPaths:(NSArray<NSIndexPath *> *)indexPaths;
- (void)moveItemAtIndexPath:(NSIndexPath *)indexPath toIndexPath:(NSIndexPath *)newIndexPath;

三兑徘、先來實現(xiàn)一個最簡單的九宮格類布局

 //創(chuàng)建一個layout布局類
    UICollectionViewFlowLayout * layout = [[UICollectionViewFlowLayout alloc]init];
    //設(shè)置布局方向為垂直流布局
    layout.scrollDirection = UICollectionViewScrollDirectionVertical;
    //設(shè)置每個item的大小為100*100
    layout.itemSize = CGSizeMake(100, 100);
    //創(chuàng)建collectionView 通過一個布局策略layout來創(chuàng)建
    UICollectionView * collect = [[UICollectionView alloc]initWithFrame:self.view.frame collectionViewLayout:layout];
    //代理設(shè)置
    collect.delegate=self;
    collect.dataSource=self;
    //注冊item類型 這里使用系統(tǒng)的類型
    [collect registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"cellid"];
   
    [self.view addSubview:collect];

這里有一點需要注意挂脑,collectionView在完成代理回調(diào)前,必須注冊一個cell欲侮,類似如下:
[collect registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"cellid"];
這和tableView有些類似崭闲,又有些不同,因為tableView除了注冊cell的方法外威蕉,還可以通過臨時創(chuàng)建來做:

//tableView在從復(fù)用池中取cell的時候刁俭,有如下兩種方法
//使用這種方式如果復(fù)用池中無,是可以返回nil的韧涨,我們在臨時創(chuàng)建即可
- (nullable __kindof UITableViewCell *)dequeueReusableCellWithIdentifier:(NSString *)identifier;
//6.0后使用如下的方法直接從注冊的cell類獲取創(chuàng)建牍戚,如果沒有注冊 會崩潰
- (__kindof UITableViewCell *)dequeueReusableCellWithIdentifier:(NSString *)identifier forIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(6_0);

我們可以分析:因為UICollectionView是iOS6.0之前的新類侮繁,因此這里統(tǒng)一了從復(fù)用池中獲取cell的方法,沒有再提供可以返回nil的方式如孝,并且在UICollectionView的回調(diào)代理中宪哩,只能使用從復(fù)用池中獲取cell的方式進(jìn)行cell的返回,其他方式會崩潰第晰,例如:

//這是正確的方法
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
    UICollectionViewCell * cell  = [collectionView dequeueReusableCellWithReuseIdentifier:@"cellid" forIndexPath:indexPath];
    cell.backgroundColor = [UIColor colorWithRed:arc4random()%255/255.0 green:arc4random()%255/255.0 blue:arc4random()%255/255.0 alpha:1];
    return cell;
}

//這樣做會崩潰
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
//    UICollectionViewCell * cell  = [collectionView dequeueReusableCellWithReuseIdentifier:@"cellid" forIndexPath:indexPath];
//    cell.backgroundColor = [UIColor colorWithRed:arc4random()%255/255.0 green:arc4random()%255/255.0 blue:arc4random()%255/255.0 alpha:1];
    UICollectionViewCell * cell = [[UICollectionViewCell alloc]init];
    return cell;
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末品抽,一起剝皮案震驚了整個濱河市桑包,隨后出現(xiàn)的幾起案子哑了,更是在濱河造成了極大的恐慌拆火,老刑警劉巖们镜,帶你破解...
    沈念sama閱讀 206,126評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異嚼鹉,居然都是意外死亡锚赤,警方通過查閱死者的電腦和手機(jī)线脚,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評論 2 382
  • 文/潘曉璐 我一進(jìn)店門又憨,熙熙樓的掌柜王于貴愁眉苦臉地迎上來蠢莺,“玉大人躏将,你說我怎么就攤上這事祸憋。” “怎么了拦赠?”我有些...
    開封第一講書人閱讀 152,445評論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長榔幸。 經(jīng)常有香客問我牍疏,道長拨齐,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,185評論 1 278
  • 正文 為了忘掉前任熟史,我火速辦了婚禮蹂匹,結(jié)果婚禮上限寞,老公的妹妹穿的比我還像新娘履植。我一直安慰自己凿滤,他們只是感情好翁脆,可當(dāng)我...
    茶點故事閱讀 64,178評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著叉钥,像睡著了一般祖能。 火紅的嫁衣襯著肌膚如雪养铸。 梳的紋絲不亂的頭發(fā)上钞螟,一...
    開封第一講書人閱讀 48,970評論 1 284
  • 那天,我揣著相機(jī)與錄音拯啦,去河邊找鬼褒链。 笑死甫匹,一個胖子當(dāng)著我的面吹牛抢韭,可吹牛的內(nèi)容都是我干的刻恭。 我是一名探鬼主播吠各,決...
    沈念sama閱讀 38,276評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼纵散!你這毒婦竟也來了伍掀?” 一聲冷哼從身側(cè)響起蜜笤,我...
    開封第一講書人閱讀 36,927評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎瓮顽,沒想到半個月后暖混,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體晾咪,經(jīng)...
    沈念sama閱讀 43,400評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡牧嫉,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,883評論 2 323
  • 正文 我和宋清朗相戀三年曹洽,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片偷崩。...
    茶點故事閱讀 37,997評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖谒出,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情杀狡,我是刑警寧澤呜象,帶...
    沈念sama閱讀 33,646評論 4 322
  • 正文 年R本政府宣布干跛,位于F島的核電站哥捕,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏凫佛。R本人自食惡果不足惜愧薛,卻給世界環(huán)境...
    茶點故事閱讀 39,213評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望费奸。 院中可真熱鬧,春花似錦换况、人聲如沸戈二。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,204評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽徙硅。三九已至,卻和暖如春桩皿,著一層夾襖步出監(jiān)牢的瞬間泄隔,已是汗流浹背逻澳。 一陣腳步聲響...
    開封第一講書人閱讀 31,423評論 1 260
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留钝腺,地道東北人。 一個月前我還...
    沈念sama閱讀 45,423評論 2 352
  • 正文 我出身青樓诲侮,卻偏偏與公主長得像镀虐,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,722評論 2 345

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