#import "ViewController.h"
@interface ViewController ()<UICollectionViewDelegate,UICollectionViewDataSource>
@property (nonatomic, strong) UICollectionView *collectionView;
@end
@implementation ViewController
static NSString * const reuseIdentifier = @"cell";
static CGFloat const minInteritemSpacing = 50;
static CGFloat const minLineSpacing = 20;
static CGFloat const TBInset = 50;
static CGFloat const LRInset = 20;
static CGFloat const horCount = 3.0;
static CGFloat const verCount = horCount;
- (void)viewDidLoad {
[super viewDidLoad];
UICollectionViewFlowLayout *flow = [[UICollectionViewFlowLayout alloc]init];
flow.scrollDirection = UICollectionViewScrollDirectionHorizontal;
flow.sectionInset = UIEdgeInsetsMake(TBInset, LRInset, TBInset, LRInset);
flow.minimumInteritemSpacing = minInteritemSpacing;
flow.minimumLineSpacing = minLineSpacing;
//此處完全根據(jù)flow.sectionInset赠涮、flow.minimumInteritemSpacing、flow.minimumLineSpacing設(shè)置唤锉。這里還用到了floor()函數(shù)世囊,他的作用是:如果是小數(shù)别瞭,則求最大的整數(shù)但不大于本身.
flow.itemSize = CGSizeMake((self.view.frame.size.width - 2 * minLineSpacing - 2 * LRInset)/horCount, floor((self.view.frame.size.height - 2 * minInteritemSpacing - 2 * TBInset)/verCount));
UICollectionView *collectionView = [[UICollectionView alloc]initWithFrame:self.view.bounds collectionViewLayout:flow];
collectionView.backgroundColor = [UIColor whiteColor];
collectionView.pagingEnabled = YES;
self.collectionView = collectionView;
collectionView.delegate = self;
collectionView.dataSource = self;
[self.view addSubview:collectionView];
[collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:reuseIdentifier];
}
#pragma mark - UICollectionViewDataSource
- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
return 2;
}
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
return 8;
}
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:reuseIdentifier forIndexPath:indexPath];
UIView *con = [[UIView alloc]initWithFrame:cell.contentView.bounds];
[cell.contentView addSubview:con];
UILabel *label = [[UILabel alloc]initWithFrame:con.bounds];
label.backgroundColor = [UIColor greenColor];
label.textAlignment = NSTextAlignmentCenter;
label.text = [NSString stringWithFormat:@"%zd",indexPath.item];
[con addSubview:label];
return cell;
}
@end
C37ABCB7-597C-4EAC-8164-03DDF8B3DE56.png