您的位置:首页 > 产品设计 > UI/UE

UICollectionView的基本使用

2016-03-17 11:26 711 查看
- (void)viewDidLoad { [super viewDidLoad];
self.title = @"UICollectionView的基本使用"; self.view.backgroundColor = [UIColor whiteColor]; UICollectionViewFlowLayout *layout = [[UICollectionViewFlowLayout alloc] init]; UICollectionView *collectionView = [[UICollectionView alloc] initWithFrame:self.view.bounds collectionViewLayout:layout]; collectionView.delegate = self; collectionView.dataSource = self; [collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"cellID"]; [self.view addSubview:collectionView]; // Do any additional setup after loading the view.}
#pragma mark UICollectionView-delegate and dataSource-UICollectionViewCell的总个数- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{ return 100;}
#pragma mark UICollectionView-delegate and dataSource 每个UICollectionViewCell- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{ static NSString *cellID = @"cellID"; UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:cellID forIndexPath:indexPath]; if(cell == nil){ cell = [[UICollectionViewCell alloc] init]; } cell.backgroundColor = [UIColor grayColor]; return cell;}
#pragma mark -- UICollectionViewDelegate 设置每个 UICollectionView 的大小- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath{ return CGSizeMake(CGRectGetWidth(self.view.bounds)/3-10, CGRectGetWidth(self.view.bounds)/3-10);}
#pragma mark - CollectionView section 的个数- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{ return 1;}
#pragma mark-设置每个UICollectionView 的间距-(UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section{ return UIEdgeInsetsMake(0, 0, 0,0);}
#pragma mark-设置每个UICollectionView 的纵向间距-(CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section{ return 10;}
#pragma mark-设置每个UICollectionView 的横向间距- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section{ return 10;}
#pragma mark-UICollectionView的点击事件-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{ NSLog(@"%@",@(indexPath.row).description);}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  iOS