流水布局的實(shí)現(xiàn)(Objective-C & Swift)

Objective-C

最終效果:

  1. 圖片水平滾動(dòng)
  2. 圖片初始位置在屏幕中間
  3. 滑動(dòng)到最左和最右時(shí)圖片停留在屏幕最中間.
  4. 中間任意位置停止滑動(dòng)時(shí), 總有一個(gè)圖片顯示在屏幕的最中間

實(shí)現(xiàn)原理

  • 使用自定義布局,這里創(chuàng)建自定義類(lèi)LineLayout繼承自流水布局UICollectionViewFlowLayout
#import "LineLayout.h"

@implementation LineLayout

/** collectView會(huì)在布局時(shí)調(diào)用該方法 */
- (void)prepareLayout
{
    [super prepareLayout];
    
    /** 設(shè)置滾動(dòng)方向?yàn)樗綕L動(dòng) */
    self.scrollDirection = UICollectionViewScrollDirectionHorizontal;
    
    /** 設(shè)置內(nèi)間距, 保證左右兩邊的顯示的圖片在collectView的最中間 */
    CGFloat inset = (self.collectionView.frame.size.width - self.itemSize.width) * 0.5;
    self.sectionInset = UIEdgeInsetsMake(0, inset, 0, inset);
}



/** 返回YES時(shí), 每次滾動(dòng)都會(huì)調(diào)用layoutAttributesForElementsInRect:方法; 默認(rèn)返回NO,即輕微的滾動(dòng)不會(huì)調(diào)用layoutAttributesForElementsInRect:方法 */
- (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds
{
    return YES;   
}

/** 
*  1.一個(gè)cell對(duì)應(yīng)一個(gè)UICollectionViewLayoutAttributes對(duì)象;
*  2.UICollectionViewLayoutAttributes對(duì)象決定了cell的frame;
*
*  layoutAttributesForElementsInRect:
*  返回值為一個(gè)數(shù)組,里面存放著rect范圍內(nèi)所有元素的布局屬性; 
*  返回值也就決定了rect范圍內(nèi)所有元素的排布(frame);
*/
- (NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect
{
    // 調(diào)用super, 獲得計(jì)算好的屬性值
    NSArray *attrs = [super layoutAttributesForElementsInRect:rect];
    
    for (UICollectionViewLayoutAttributes *attr in attrs)
    {
        // collectView的中心點(diǎn)x = 偏移量 + 自身寬度的一半
        CGFloat collectViewCenterX = self.collectionView.contentOffset.x + self.collectionView.frame.size.width * 0.5;
        
        // cell的中心點(diǎn)x = 偏移量 + cell寬度的一半 = attr.center.x
        CGFloat cellCenterX = attr.center.x;
        
        // 計(jì)算cell的中心點(diǎn)到collectView中心點(diǎn)的距離(距離越近,尺寸越大)
        CGFloat delta = ABS(cellCenterX - collectViewCenterX);
        
        // 計(jì)算縮放比例
        CGFloat scale = 1 - delta / self.collectionView.frame.size.width;;
        
        // 設(shè)置縮放
        attr.transform = CGAffineTransformMakeScale(scale, scale);
    }
    return attrs;
}


/**
 *  作用: 讓collectView停止?jié)L動(dòng)時(shí)總有一個(gè)cell顯示在屏幕的最中間.
 *
 *  @return 返回值決定了collectionView停止?jié)L動(dòng)時(shí)的偏移量
 */
- (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];
    
    // 計(jì)算collectView最中心點(diǎn)的x的值
    CGFloat centerX = proposedContentOffset.x + self.collectionView.frame.size.width * 0.5;
    
    // 計(jì)算cell的的中心點(diǎn)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
  • 創(chuàng)建collectView, 并設(shè)置創(chuàng)建好的自定義布局
#import "ViewController.h"
#import "LineLayout.h"
#import "LVPictureCell.h"

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

static NSString *ID = @"mycell";

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    /** 設(shè)置背景色 */
    self.view.backgroundColor = [UIColor redColor];
    
    /** 設(shè)置狀態(tài)欄文字顏色 */
    [UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;

    /** 創(chuàng)建布局 */
    LineLayout *layout = [[LineLayout alloc] init];
    
    /** 設(shè)置cell的大小 */
    layout.itemSize = CGSizeMake(250 * 0.5, 370 * 0.5);
    
    /** 設(shè)置collectView的frame */
    CGRect frame = CGRectMake(0, 100, self.view.frame.size.width, 370);
    
    /** 創(chuàng)建collectView */
    UICollectionView *collectionView = [[UICollectionView alloc] initWithFrame:frame collectionViewLayout:layout];
    
    /** 注冊(cè)cell */
    [collectionView registerNib:[UINib nibWithNibName:NSStringFromClass([LVPictureCell class]) bundle:nil] forCellWithReuseIdentifier:ID];
    
    /** collectView的背景色 */
    collectionView.backgroundColor = [UIColor blackColor];
    
    /** 設(shè)置collectView的代理和數(shù)據(jù)源 */
    collectionView.dataSource = self;
    collectionView.delegate = self;
    
    /** collectView添加到當(dāng)前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. 創(chuàng)建控制器繼承自UICollectionViewController

private let reuseIdentifier = "Cell"
private let numberOfPages = 4
class FlowLayoutViewController: UICollectionViewController {
    // 重寫(xiě)初始化方法, 初始化時(shí)必須指定布局
    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()
        // 注冊(cè)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__)
    }
}

  • 方法調(diào)用順序

    1. collectionView(_:numberOfItemsInSection:) // 詢(xún)問(wèn)控制器要顯示的cell的個(gè)數(shù)
    2. prepareLayout() // 開(kāi)始布局
    3. collectionView(_:cellForItemAtIndexPath:) // 問(wèn)控制器要cell
    4. init(frame:) // 初始化cell
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末晚吞,一起剝皮案震驚了整個(gè)濱河市槽地,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌缅糟,老刑警劉巖窗宦,帶你破解...
    沈念sama閱讀 216,324評(píng)論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異髓窜,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)程拭,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,356評(píng)論 3 392
  • 文/潘曉璐 我一進(jìn)店門(mén)崖媚,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人山宾,你說(shuō)我怎么就攤上這事至扰∽拭蹋” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 162,328評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵直秆,是天一觀(guān)的道長(zhǎng)。 經(jīng)常有香客問(wèn)我,道長(zhǎng)歇竟,這世上最難降的妖魔是什么弧关? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,147評(píng)論 1 292
  • 正文 為了忘掉前任别瞭,我火速辦了婚禮,結(jié)果婚禮上茸习,老公的妹妹穿的比我還像新娘畜隶。我一直安慰自己浸遗,他們只是感情好猫胁,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,160評(píng)論 6 388
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著跛锌,像睡著了一般弃秆。 火紅的嫁衣襯著肌膚如雪届惋。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 51,115評(píng)論 1 296
  • 那天菠赚,我揣著相機(jī)與錄音脑豹,去河邊找鬼。 笑死衡查,一個(gè)胖子當(dāng)著我的面吹牛瘩欺,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播拌牲,決...
    沈念sama閱讀 40,025評(píng)論 3 417
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼俱饿,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了塌忽?” 一聲冷哼從身側(cè)響起拍埠,我...
    開(kāi)封第一講書(shū)人閱讀 38,867評(píng)論 0 274
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎土居,沒(méi)想到半個(gè)月后枣购,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,307評(píng)論 1 310
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡擦耀,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,528評(píng)論 2 332
  • 正文 我和宋清朗相戀三年棉圈,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片埂奈。...
    茶點(diǎn)故事閱讀 39,688評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡迄损,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出账磺,到底是詐尸還是另有隱情芹敌,我是刑警寧澤,帶...
    沈念sama閱讀 35,409評(píng)論 5 343
  • 正文 年R本政府宣布垮抗,位于F島的核電站氏捞,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏冒版。R本人自食惡果不足惜液茎,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,001評(píng)論 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望辞嗡。 院中可真熱鬧捆等,春花似錦、人聲如沸续室。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,657評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)挺狰。三九已至明郭,卻和暖如春买窟,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背薯定。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,811評(píng)論 1 268
  • 我被黑心中介騙來(lái)泰國(guó)打工始绍, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人话侄。 一個(gè)月前我還...
    沈念sama閱讀 47,685評(píng)論 2 368
  • 正文 我出身青樓亏推,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親满葛。 傳聞我的和親對(duì)象是個(gè)殘疾皇子径簿,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,573評(píng)論 2 353

推薦閱讀更多精彩內(nèi)容