UICollectionView 基礎,uicollectionview

來源:互聯網
上載者:User

UICollectionView 基礎,uicollectionview

在iOS開發中經常會用到UICollectionView,和UITableView同樣即成UIScrollView 但是操作起來比UITableVIew要麻煩一些 ,有些地方需要注意,一下是UICollectionView基礎詳解。 ////  ViewController.m//  Collection #import "ViewController.h"#import "CollectionViewCell.h"#import "CollectionViewCell1.h"#import "CollectionReusableView.h"@interface ViewController ()<UICollectionViewDelegate,UICollectionViewDataSource>@property(nonatomic,strong)UICollectionView *collectionView;@end @implementation ViewController - (void)viewDidLoad {    [super viewDidLoad];    //此處必須要有創見一個UICollectionViewFlowLayout的對象    UICollectionViewFlowLayout *layout=[[UICollectionViewFlowLayout alloc]init];    //同一行相鄰兩個cell的最小間距    layout.minimumInteritemSpacing = 5;    //最小兩行之間的間距    layout.minimumLineSpacing = 5;        _collectionView=[[UICollectionView alloc]initWithFrame:CGRectMake(0, 0, 375, 667) collectionViewLayout:layout];    _collectionView.backgroundColor=[UIColor whiteColor];    _collectionView.delegate=self;    _collectionView.dataSource=self;    //這個是橫向滑動    //layout.scrollDirection=UICollectionViewScrollDirectionHorizontal;    [self.view addSubview:_collectionView];        /*     *這是重點 必須註冊cell     */    //這種是xib建的cell 需要這麼註冊    UINib *cellNib=[UINib nibWithNibName:@"CollectionViewCell" bundle:nil];    [_collectionView registerNib:cellNib forCellWithReuseIdentifier:@"CollectionViewCell"];    //這種是自訂cell不帶xib的註冊//   [_collectionView registerClass:[CollectionViewCell1 class] forCellWithReuseIdentifier:@"myheheIdentifier"];    //這種是原生cell的註冊//    [_collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"cell"];        //這是頭部與腳部的註冊    UINib *cellNib1=[UINib nibWithNibName:@"CollectionReusableView" bundle:nil];    [_collectionView registerNib:cellNib1 forSupplementaryViewOfKind:UICollectionElementKindSectionHeaderwithReuseIdentifier:@"CollectionReusableView"];    [_collectionView registerNib:cellNib1 forSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"CollectionReusableView"];}//一共有多少個組-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{    return 1;}//每一組有多少個cell-(NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{    return 10;}//每一個cell是什麼-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{    CollectionViewCell *cell=[collectionView dequeueReusableCellWithReuseIdentifier:@"CollectionViewCell" forIndexPath:indexPath];    cell.label.text=[NSString stringWithFormat:@"%ld",indexPath.section*100+indexPath.row];    cell.backgroundColor=[UIColor groupTableViewBackgroundColor];    return cell;}//頭部和腳部的載入-(UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{    UICollectionReusableView *view=[collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"CollectionReusableView"forIndexPath:indexPath];    UILabel *label=[[UILabel alloc]initWithFrame:CGRectMake(110, 20, 100, 30)];    if ([kind isEqualToString:UICollectionElementKindSectionHeader]) {        label.text=@"頭";    }else{        label.text=@"腳";    }    [view addSubview:label];    return view;}//每一個分組的上左下右間距-(UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section{    return UIEdgeInsetsMake(5, 5, 5, 5);}//頭部試圖的大小-(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section{    return CGSizeMake(50, 60);}//腳部試圖的大小- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout referenceSizeForFooterInSection:(NSInteger)section{    return CGSizeMake(50, 60);}//定義每一個cell的大小- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath{    return CGSizeMake(115, 100);} //cell的點擊事件-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{    //cell被點擊後移動的動畫    [collectionView selectItemAtIndexPath:indexPath animated:YES scrollPosition:UICollectionViewScrollPositionTop];}@end 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.