瀑布流


- (UICollectionView *)collectionView {

    if (!_collectionView) {

        _collectionView = [[UICollectionView alloc] initWithFrame:[UIScreen mainScreen].bounds collectionViewLayout:self.layout];

        _collectionView.backgroundColor = [UIColor whiteColor];

        _collectionView.showsHorizontalScrollIndicator = NO;

        _collectionView.dataSource = self;

        _collectionView.delegate = self;

        [_collectionView registerClass:[TLCollectionWaterFallCell class] forCellWithReuseIdentifier:reuseIdentifier];

    }

    return _collectionView;

}


- (TLCollectionWaterFallFlow *)layout {

    if (!_layout) {

        _layout = [[TLCollectionWaterFallFlow alloc] init];

        _layout.minimumInteritemSpacing = kMargin;

        _layout.minimumLineSpacing = kMargin;

        _layout.sectionInset = UIEdgeInsetsMake(5, 5, 5, 5);

    }

    return _layout;

}


#pragma mark -

#pragma mark lifecycle

- (void)viewDidLoad {

    [super viewDidLoad];

    self.title = @"TLCollectionWaterFallFlow";

    self.dataList = [NSMutableArray array];


    CGFloat width = ([UIScreen mainScreen].bounds.size.width - 2*kMargin)/2.f;

    NSLog(@"width is %.2f", width);

    for (NSUInteger idx = 0; idx < 100; idx ++) {

        CGFloat height = 100 + (arc4random() % 100);

        NSValue *value = [NSValue valueWithCGSize:CGSizeMake(width, height)];

        [_dataList addObject:value];

    }

    

    [self.view addSubview:self.collectionView];

    // Do any additional setup after loading the view, typically from a nib.

}


#pragma mark -

#pragma mark UICollectionViewDataSource

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

    return _dataList.count;

}


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

    TLCollectionWaterFallCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:

                                  reuseIdentifier forIndexPath:indexPath];


    cell.label.text = [NSString stringWithFormat:@"%zi", indexPath.row];

    cell.label.frame = cell.bounds;


    return  cell;

}


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

    

    CGSize size = [[_dataList objectAtIndex:indexPath.row] CGSizeValue];

    

    return  size;

}


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

    CGFloat width = ([UIScreen mainScreen].bounds.size.width - 2*kMargin)/2.f;

    for (NSUInteger idx = 0; idx < 50; idx ++) {

        CGFloat height = 100 + (arc4random() % 100);

        NSValue *value = [NSValue valueWithCGSize:CGSizeMake(width, height)];

        [_dataList addObject:value];

    }

    

    [self.collectionView reloadData];

}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章