IOS基礎_ UICollectionView的簡單使用

來源:互聯網
上載者:User

IOS基礎_ UICollectionView的簡單使用

和表格視圖類似 UICollectionView的使用有兩種方法

一種是繼承UICollectionViewController,這個Controller會內建一個UICollectionView;

另外一種是建立一個UIConllectionView 視圖放在普通的UIViewController裡面。

我們用第二種


首先聲明先聲明一個重用標示 和實現委託

#define _CELL @"acell"

@interfaceyxpViewController ()


然後初始化UICollectionVIew

- (void)initCollectionView

{

//先執行個體化一個層

UICollectionViewFlowLayout *layout=[[UICollectionViewFlowLayoutalloc] init];

//建立一屏的視圖大小

UICollectionView *collectionView=[[UICollectionViewalloc] initWithFrame:self.view.boundscollectionViewLayout:layout];

[collectionViewregisterClass:[UICollectionViewCellclass] forCellWithReuseIdentifier:_CELL];

collectionView.backgroundColor=[UIColorwhiteColor];

collectionView.delegate=self;

collectionView.dataSource=self;

[self.viewaddSubview:collectionView];

}


實現代理方法

#pragma mark --UICollectionViewDataSource

//定義展示的UICollectionViewCell的個數

-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section

{

return 31;

}

//定義展示的Section的個數

-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView

{

return 1;

}

//每個UICollectionView展示的內容

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

{

UICollectionViewCell * cell = [collectionViewdequeueReusableCellWithReuseIdentifier:_CELLforIndexPath:indexPath];

cell.backgroundColor = [UIColorcolorWithRed:((arc4random()%255)/255.0)green:((arc4random()%255)/255.0)blue:((arc4random()%255)/255.0)alpha:1.0f];

return cell;

}


#pragma mark --UICollectionViewDelegate

//UICollectionView被選中時調用的方法

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

{

UICollectionViewCell * cell = (UICollectionViewCell *)[collectionViewcellForItemAtIndexPath:indexPath];

cell.backgroundColor = [UIColorcolorWithRed:((arc4random()%255)/255.0)green:((arc4random()%255)/255.0)blue:((arc4random()%255)/255.0)alpha:1.0f];

}

//返回這個UICollectionViewCell是否可以被選擇

-(BOOL)collectionView:(UICollectionView *)collectionView shouldSelectItemAtIndexPath:(NSIndexPath *)indexPath

{

return YES;

}



#pragma mark --UICollectionViewDelegateFlowLayout

//定義每個UICollectionView 的大小

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath

{

return CGSizeMake(90,90);

}

//定義每個UICollectionView 的邊距

-(UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section

{

return UIEdgeInsetsMake(10,10, 10,10);

}


這樣一個簡單地UICollection視圖就完成了

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.