流水布局的实现(Objective-C & Swift)

Objective-C

最终效果:

  1. 图片水平滚动
  2. 图片初始位置在屏幕中间
  3. 滑动到最左和最右时图片停留在屏幕最中间.
  4. 中间任意位置停止滑动时, 总有一个图片显示在屏幕的最中间

实现原理

  • 使用自定义布局,这里创建自定义类LineLayout继承自流水布局UICollectionViewFlowLayout
#import "LineLayout.h"

@implementation LineLayout

/** collectView会在布局时调用该方法 */
- (void)prepareLayout
{
    [super prepareLayout];
    
    /** 设置滚动方向为水平滚动 */
    self.scrollDirection = UICollectionViewScrollDirectionHorizontal;
    
    /** 设置内间距, 保证左右两边的显示的图片在collectView的最中间 */
    CGFloat inset = (self.collectionView.frame.size.width - self.itemSize.width) * 0.5;
    self.sectionInset = UIEdgeInsetsMake(0, inset, 0, inset);
}



/** 返回YES时, 每次滚动都会调用layoutAttributesForElementsInRect:方法; 默认返回NO,即轻微的滚动不会调用layoutAttributesForElementsInRect:方法 */
- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds
{
    return YES;   
}

/** 
*  1.一个cell对应一个UICollectionViewLayoutAttributes对象;
*  2.UICollectionViewLayoutAttributes对象决定了cell的frame;
*
*  layoutAttributesForElementsInRect:
*  返回值为一个数组,里面存放着rect范围内所有元素的布局属性; 
*  返回值也就决定了rect范围内所有元素的排布(frame);
*/
- (NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect
{
    // 调用super, 获得计算好的属性值
    NSArray *attrs = [super layoutAttributesForElementsInRect:rect];
    
    for (UICollectionViewLayoutAttributes *attr in attrs)
    {
        // collectView的中心点x = 偏移量 + 自身宽度的一半
        CGFloat collectViewCenterX = self.collectionView.contentOffset.x + self.collectionView.frame.size.width * 0.5;
        
        // cell的中心点x = 偏移量 + cell宽度的一半 = attr.center.x
        CGFloat cellCenterX = attr.center.x;
        
        // 计算cell的中心点到collectView中心点的距离(距离越近,尺寸越大)
        CGFloat delta = ABS(cellCenterX - collectViewCenterX);
        
        // 计算缩放比例
        CGFloat scale = 1 - delta / self.collectionView.frame.size.width;;
        
        // 设置缩放
        attr.transform = CGAffineTransformMakeScale(scale, scale);
    }
    return attrs;
}


/**
 *  作用: 让collectView停止滚动时总有一个cell显示在屏幕的最中间.
 *
 *  @return 返回值决定了collectionView停止滚动时的偏移量
 */
- (CGPoint)targetContentOffsetForProposedContentOffset:(CGPoint)proposedContentOffset withScrollingVelocity:(CGPoint)velocity
{
    // 获得最终的矩形框frame
    CGRect rect;
    rect.origin.x = proposedContentOffset.x;
    rect.origin.y = 0;
    rect.size = self.collectionView.frame.size;
    
    NSArray *attrs = [self layoutAttributesForElementsInRect:rect];
    
    // 计算collectView最中心点的x的值
    CGFloat centerX = proposedContentOffset.x + self.collectionView.frame.size.width * 0.5;
    
    // 计算cell的的中心点x距离collectView中心x的最小值
    CGFloat minDelta = MAXFLOAT;
    for (UICollectionViewLayoutAttributes *attr in attrs) {
        if (ABS(attr.center.x - centerX) < ABS(minDelta) ){
            minDelta = attr.center.x - centerX;
        }
    }
    
    // 修改最终的偏移量
    proposedContentOffset.x += minDelta;
    return proposedContentOffset;
}
@end
  • 创建collectView, 并设置创建好的自定义布局
#import "ViewController.h"
#import "LineLayout.h"
#import "LVPictureCell.h"

@interface ViewController () <UICollectionViewDataSource, UICollectionViewDelegate>
@end

static NSString *ID = @"mycell";

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    /** 设置背景色 */
    self.view.backgroundColor = [UIColor redColor];
    
    /** 设置状态栏文字颜色 */
    [UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;

    /** 创建布局 */
    LineLayout *layout = [[LineLayout alloc] init];
    
    /** 设置cell的大小 */
    layout.itemSize = CGSizeMake(250 * 0.5, 370 * 0.5);
    
    /** 设置collectView的frame */
    CGRect frame = CGRectMake(0, 100, self.view.frame.size.width, 370);
    
    /** 创建collectView */
    UICollectionView *collectionView = [[UICollectionView alloc] initWithFrame:frame collectionViewLayout:layout];
    
    /** 注册cell */
    [collectionView registerNib:[UINib nibWithNibName:NSStringFromClass([LVPictureCell class]) bundle:nil] forCellWithReuseIdentifier:ID];
    
    /** collectView的背景色 */
    collectionView.backgroundColor = [UIColor blackColor];
    
    /** 设置collectView的代理和数据源 */
    collectionView.dataSource = self;
    collectionView.delegate = self;
    
    /** collectView添加到当前view上 */
    [self.view addSubview:collectionView];
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    LVPictureCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:ID forIndexPath:indexPath];
    
    cell.imageName = [NSString stringWithFormat:@"%zd",indexPath.item];

    return cell;
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
    return 13;
}
@end

Swift

1. 自定义布局

private class NewFeatureLayout: UICollectionViewFlowLayout {
    override func prepareLayout()
        super.prepareLayout()
        itemSize = UIScreen.mainScreen().bounds.size
        minimumInteritemSpacing = 0
        minimumLineSpacing = 0
        scrollDirection = UICollectionViewScrollDirection.Horizontal
        collectionView?.bounces = false
        collectionView?.pagingEnabled = true
        collectionView?.showsHorizontalScrollIndicator = false
    }
}

2. 创建控制器继承自UICollectionViewController

private let reuseIdentifier = "Cell"
private let numberOfPages = 4
class FlowLayoutViewController: UICollectionViewController {
    // 重写初始化方法, 初始化时必须指定布局
    let layout: UICollectionViewFlowLayout = NewFeatureLayout()
    init() {
       super.init(collectionViewLayout: layout)
   }
   required init?(coder aDecoder: NSCoder) {
       fatalError("init(coder:) has not been implemented")
   }
   override func viewDidLoad() {
        super.viewDidLoad()
        // 注册cell
        self.collectionView!.registerClass(NewFeatureCell.self, forCellWithReuseIdentifier: reuseIdentifier)
    }

    // MARK: UICollectionViewDataSource
    override func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return numberOfPages
    }

    override func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCellWithReuseIdentifier(reuseIdentifier, forIndexPath: indexPath) as! NewFeatureCell
        cell.imageIndex = indexPath.item
        return cell
    }
}

3. 自定义cell

class FlowLayoutCell: UICollectionViewCell {
    
    override init(frame: CGRect) {
        super.init(frame: frame)
        setupUI()
    }
    
    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
    
    private func setupUI() {
        // add subView onto contentView
        contentView.addSubview(imageView)
        contentView.addSubview(startButton)
        // set constraints for ImageView
        imageView.snp_makeConstraints { (make) -> Void in
            make.top.equalTo(0)
            make.bottom.equalTo(0)
            make.leading.equalTo(0)
            make.trailing.equalTo(0)
        }
        // set constraints for startButton
        startButton.snp_makeConstraints { (make) -> Void in
            make.centerX.equalTo(contentView)
            make.bottom.equalTo(-150)
        }
    }
    
    // set imageView's image when imageIndex was set
    var imageIndex: Int? {
        didSet{
            imageView.image = UIImage(named: "new_feature_\(imageIndex! + 1)")
            if imageIndex == 3 {
                startButton.hidden = false
            }
        }
    }
    
    // lazy loading
    private lazy var imageView = UIImageView()
    private lazy var startButton: UIButton = {
        let button = UIButton()
        button.setImage(UIImage(named: "new_feature_button"), forState: .Normal)
        button.setImage(UIImage(named: "new_feature_button_highlighted"), forState: .Highlighted)
        button.addTarget(self, action: "enterWeiboClick", forControlEvents: .TouchUpInside)
        button.hidden = true
        return button
    }()
    
    // enterWeibo button click
    func enterWeiboClick() {
        print(__FUNCTION__)
    }
}

  • 方法调用顺序

    1. collectionView(_:numberOfItemsInSection:) // 询问控制器要显示的cell的个数
    2. prepareLayout() // 开始布局
    3. collectionView(_:cellForItemAtIndexPath:) // 问控制器要cell
    4. init(frame:) // 初始化cell
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 194,242评论 5 459
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 81,769评论 2 371
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 141,484评论 0 319
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,133评论 1 263
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 61,007评论 4 355
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,080评论 1 272
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,496评论 3 381
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,190评论 0 253
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,464评论 1 290
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,549评论 2 309
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,330评论 1 326
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,205评论 3 312
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,567评论 3 298
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 28,889评论 0 17
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,160评论 1 250
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,475评论 2 341
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 40,650评论 2 335

推荐阅读更多精彩内容