Collection製作相片查看器

實現效果

                                                           

1.控制器的實現

#import "ViewController.h"
#import "PhotoCell.h"
#import "PhotoFlowLayout.h"

@interface ViewController ()<UICollectionViewDelegate,UICollectionViewDataSource>

@end
static NSString* identifier = @"photoCell";
@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    
   PhotoFlowLayout *flowLayout = [[PhotoFlowLayout alloc]init];
    
    UICollectionView *collectionView = [[UICollectionView alloc]initWithFrame:CGRectMake(0, 200, self.view.frame.size.width, 300) collectionViewLayout:flowLayout];
    
    collectionView.delegate = self;
    collectionView.dataSource = self;
    collectionView.backgroundColor = [UIColor darkGrayColor];
    collectionView.showsHorizontalScrollIndicator = NO;
    [collectionView registerClass:[PhotoCell class] forCellWithReuseIdentifier:identifier];
    
    [self.view addSubview:collectionView];
    
}

-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView{

    return 1;
}

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

    return 20;
}

-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
    
    PhotoCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];
    
    cell.backgroundColor = [UIColor blueColor];
    return cell;

}
@end

2.自定義cell

#import "PhotoCell.h"

@implementation PhotoCell

-(instancetype)initWithFrame:(CGRect)frame{

    if (self = [super initWithFrame:frame]) {

        UIView *view = [[UIView alloc]initWithFrame:self.contentView.bounds];
        UIColor *color = [UIColor colorWithRed: arc4random_uniform(255)/255.0 green: arc4random_uniform(255)/255.0 blue: arc4random_uniform(255)/255.0 alpha:1.0];
        view.backgroundColor = color;
        [self.contentView addSubview:view];
    }
    return self;
}

@end

3. 自定義flowlayout

#import "PhotoFlowLayout.h"

@implementation PhotoFlowLayout


-(void)prepareLayout{

    [super prepareLayout];
    CGSize collectionViewSize = self.collectionView.frame.size;
    CGFloat itemWidth = collectionViewSize.height * 0.6;
    CGFloat itemHeight = collectionViewSize.height * 0.8;
    
    self.itemSize = CGSizeMake(itemWidth, itemHeight);
    self.scrollDirection = UICollectionViewScrollDirectionHorizontal;
    
    // 設置頭部和尾部的初始間距
    CGFloat margin = collectionViewSize.width/2 - itemWidth/2;
    self.sectionInset = UIEdgeInsetsMake(0, margin, 0, margin);
    
}

//當屏幕的可見範圍發生變化的時候, 要重新刷新佈局
- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds {
    
    return YES;
}

// 當手指離開collectionView的時候會調用 讓view 在中間顯示
- (CGPoint)targetContentOffsetForProposedContentOffset:(CGPoint)proposedContentOffset withScrollingVelocity:(CGPoint)velocity {
    
    //屏幕的中心點
    CGFloat screenCenter = proposedContentOffset.x + self.collectionView.frame.size.width/2;
    
    //取出可見範圍內的cell
    CGRect visibleRect = CGRectZero;
    visibleRect.size = self.collectionView.frame.size;
    visibleRect.origin = proposedContentOffset;
    
    //獲取可見範圍內的cell屬性集合  調用super 的方法, 是避免重新計算比率
    NSArray *visibleArray = [super layoutAttributesForElementsInRect:visibleRect];
    
    // 定義最小的 間距
    CGFloat minMargin = MAXFLOAT;

    for (UICollectionViewLayoutAttributes *attributes in visibleArray) {

        // 計算cell的中心點 和  屏幕中心點的差值
        CGFloat deltaMargin = attributes.center.x - screenCenter;
        if (fabs(minMargin) > fabs(deltaMargin)) {
            
            minMargin = deltaMargin;
        }
    }
    
    return CGPointMake(proposedContentOffset.x + minMargin, proposedContentOffset.y);
}


// 所有可見範圍 itemcell 屬性,一個UICollectionViewLayoutAttributes對應一個itemcell
-(NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect{

    NSArray *superAttributes = [super layoutAttributesForElementsInRect:rect];
    
     CGFloat screenCenter = self.collectionView.contentOffset.x + self.collectionView.frame.size.width/2;
    
    [superAttributes enumerateObjectsUsingBlock:^(id  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {

        UICollectionViewLayoutAttributes * attrs = obj;

        // 小 就是離屏幕中心近
        CGFloat deltaMargin = fabs(screenCenter - attrs.center.x);
        
        // 離屏幕中心近 放大點
        CGFloat scaleDelta = 1.1 - deltaMargin / (self.collectionView.frame.size.width/2 + attrs.size.width);
        attrs.transform = CGAffineTransformMakeScale(scaleDelta, scaleDelta);
    }];
    
    return superAttributes;
}

@end


demo下載


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