iOS-基礎(chǔ)控件-- UICollectionView簡(jiǎn)單的總結(jié)

**門(mén)掩黃昏,無(wú)計(jì)留春住。**<卡比獸>

@interface ViewController ()  <UICollectionViewDataSource,UICollectionViewDelegate>
//  對(duì)其操作遵循的兩個(gè)協(xié)議

@end

@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
//第一步:創(chuàng)建UICollectionViewFlowLayout 它是專(zhuān)門(mén)給collectionView布局

 UICollectionViewFlowLayout *flowLayout =[UICollectionViewFlowLayout new];    

//第二步: 給定item的大小

 flowLayout.itemSize=CGSizeMake(60, 60);    

//第三步: 設(shè)定每?jī)蓚€(gè)item的最小的間隔(垂直滾動(dòng))

 flowLayout.minimumInteritemSpacing=10;   

//每行之間的最小間隔 (水平滾動(dòng))

  flowLayout.minimumLineSpacing=40;   

//第四步: 設(shè)置滾動(dòng)的方向 (垂直)

flowLayout.scrollDirection=UICollectionViewScrollDirectionVertical;       

//布局頭部視圖尺寸

flowLayout.headerReferenceSize=CGSizeMake(80, 80);    

//布局尾部視圖尺寸

flowLayout.footerReferenceSize=CGSizeMake(80, 80);      

//視圖的內(nèi)邊距

flowLayout.sectionInset = UIEdgeInsetsMake(10, 10, 10, 10);      

//布局UICollectionView

UICollectionView *collection = [[UICollectionView alloc]initWithFrame:[UIScreen mainScreen].bounds collectionViewLayout:flowLayout];       

//設(shè)置代理

collection.delegate=self;    
collection.dataSource=self;    
collection.backgroundColor=[UIColor redColor];    
[self.view addSubview:collection];      

//注冊(cè)cell

[collection registerClass:[FirstCollectionViewCell class] forCellWithReuseIdentifier:@"cell"];      

//注冊(cè)頭部視圖

 [collection registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"headerView"];    

//注冊(cè)尾部視圖

 [collection registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"footerView"];

}

#pragma mark -------數(shù)據(jù)源 (必須實(shí)現(xiàn)的方法 )
//設(shè)置分區(qū)下item數(shù)

-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{   
 return 20;
}

//返回collectionView的方法

-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{   

FirstCollectionViewCell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];   
cell.photoImage.image = [UIImage imageNamed:@"3.jpg"];
return cell;
}

//@optional
//設(shè)置分區(qū)數(shù)

-(NSInteger )numberOfSectionsInCollectionView:(UICollectionView *)collectionView
{    
return 4;
}

//返回頭部和尾部視圖的樣式

-(UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
{       

//需要判斷返回的是頭部還是尾部視圖

if ([kind isEqualToString:UICollectionElementKindSectionHeader])     
{        

//初始化頭部視圖

 UICollectionReusableView *headerView=[collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"headerView" forIndexPath:indexPath];              

//設(shè)置頭部視圖樣式

headerView.backgroundColor=[UIColor cyanColor];               
return headerView;   
 }else
{        
UICollectionReusableView *footerView=[collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"footerView" forIndexPath:indexPath];              
 footerView.backgroundColor  = [UIColor greenColor];       
 return footerView;    
}   
 return nil;  
 }

//選擇item時(shí) ,會(huì)觸發(fā)的方法

-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{      

//indexPath 是由 section和item 組成

if (indexPath.item == 0 && indexPath.section == 0) {        
SecondViewController *secondVC=[SecondViewController new];  
點(diǎn)擊第一區(qū)第一個(gè)單元cell跳轉(zhuǎn)到  secondVC    
[self.navigationController pushViewController:secondVC animated:YES];   
 }else if (indexPath.item == 1 && indexPath.section == 0)
{        
ThirdViewController *thirdVC=[ThirdViewController new];
  點(diǎn)擊第一區(qū)第二個(gè)單元cell跳轉(zhuǎn)到 thirdVC
[self.navigationController pushViewController:thirdVC animated:YES];    
}

}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末椭懊,一起剝皮案震驚了整個(gè)濱河市奉件,隨后出現(xiàn)的幾起案子肖抱,更是在濱河造成了極大的恐慌砌溺,老刑警劉巖阁将,帶你破解...
    沈念sama閱讀 211,817評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件潦刃,死亡現(xiàn)場(chǎng)離奇詭異侮措,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)乖杠,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,329評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門(mén)分扎,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人胧洒,你說(shuō)我怎么就攤上這事畏吓∧矗” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 157,354評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵菲饼,是天一觀的道長(zhǎng)肾砂。 經(jīng)常有香客問(wèn)我,道長(zhǎng)宏悦,這世上最難降的妖魔是什么镐确? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,498評(píng)論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮饼煞,結(jié)果婚禮上源葫,老公的妹妹穿的比我還像新娘。我一直安慰自己派哲,他們只是感情好臼氨,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,600評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著芭届,像睡著了一般储矩。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上褂乍,一...
    開(kāi)封第一講書(shū)人閱讀 49,829評(píng)論 1 290
  • 那天持隧,我揣著相機(jī)與錄音,去河邊找鬼逃片。 笑死屡拨,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的褥实。 我是一名探鬼主播呀狼,決...
    沈念sama閱讀 38,979評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼损离!你這毒婦竟也來(lái)了哥艇?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,722評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤僻澎,失蹤者是張志新(化名)和其女友劉穎貌踏,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體窟勃,經(jīng)...
    沈念sama閱讀 44,189評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡祖乳,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,519評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了秉氧。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片眷昆。...
    茶點(diǎn)故事閱讀 38,654評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出隙赁,到底是詐尸還是另有隱情垦藏,我是刑警寧澤,帶...
    沈念sama閱讀 34,329評(píng)論 4 330
  • 正文 年R本政府宣布伞访,位于F島的核電站掂骏,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏厚掷。R本人自食惡果不足惜弟灼,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,940評(píng)論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望冒黑。 院中可真熱鬧田绑,春花似錦、人聲如沸抡爹。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,762評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)冬竟。三九已至欧穴,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間泵殴,已是汗流浹背涮帘。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,993評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留笑诅,地道東北人调缨。 一個(gè)月前我還...
    沈念sama閱讀 46,382評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像吆你,于是被迫代替她去往敵國(guó)和親弦叶。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,543評(píng)論 2 349

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