#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;
//此处完全根据flow.sectionInset、flow.minimumInteritemSpacing、flow.minimumLineSpacing设置。这里还用到了floor()函数,他的作用是:如果是小数,则求最大的整数但不大于本身.
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
UICollectionView的一点小技巧
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 下面选了最近十年里,十位名人所做的毕业演讲。那么多的故事与经历,其实只想告诉你一件事: 面对迷茫和不确定的未来,我...