iOS--CustomFlowLayout

ViewController.m#

//
//  ViewController.m
//  CustomFlowLayout

//

#import "ViewController.h"
#import "TestCollectionViewCell.h"
#import "CustomFlowLayout.h"
@interface ViewController ()<UICollectionViewDataSource,UICollectionViewDelegate>

@end

@implementation ViewController

NSString *identifier = @"cell";

- (void)viewDidLoad {
    [super viewDidLoad];
    //創(chuàng)建布局對(duì)象
    CustomFlowLayout *flowLayout = [[CustomFlowLayout alloc] init];
    
    UICollectionView *collectionView = [[UICollectionView alloc] initWithFrame:CGRectMake(0, 20, 414, 200) collectionViewLayout:flowLayout];
    collectionView.delegate = self;
    collectionView.dataSource = self;
    [collectionView registerClass:[TestCollectionViewCell class] forCellWithReuseIdentifier:identifier];
    [self.view addSubview:collectionView];
    
    
    
}




- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section{
    return 20;
}


- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
    TestCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];
    
    cell.imgView.image = [UIImage imageNamed:@"10.png" ];
    return cell;
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end

TestCollectionViewCell.h#

//
//  TestCollectionViewCell.h
//  CustomFlowLayout
//

//

#import <UIKit/UIKit.h>

@interface TestCollectionViewCell : UICollectionViewCell

@property(nonatomic,strong)UIImageView *imgView;

@end

TestCollectionViewCell.m#

//
//  TestCollectionViewCell.m
//  UI_21_CustomFlowLayout
//

//

#import "TestCollectionViewCell.h"

@implementation TestCollectionViewCell

-(instancetype)initWithFrame:(CGRect)frame{
    if (self = [super initWithFrame:frame]) {
        
        self.imgView = [[UIImageView alloc] initWithFrame:self.contentView.bounds];
        
        [self.contentView addSubview:_imgView];
    }
    
    return self;
}


@end

CustomFlowLayout.m#

//
//  CustomFlowLayout.m
//  CustomFlowLayout
.
//

#import "CustomFlowLayout.h"

#define kItem  100

@implementation CustomFlowLayout


//做好一些準(zhǔn)備工作,初始化
//準(zhǔn)備布局
-(void)prepareLayout{
    
    //設(shè)置大小
    self.itemSize = CGSizeMake(kItem, kItem);
    //設(shè)置滾動(dòng)方向
    self.scrollDirection = UICollectionViewScrollDirectionHorizontal;
    //最小行間距
    self.minimumLineSpacing = 50;
    
    
}

//是否時(shí)刻改變并且重新布局
-(BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds{
    return YES;
}


//數(shù)組里放置的是每一個(gè)item設(shè)置的屬性(例如: frame等等)
-(NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect{
    //從父類里獲取item放置屬性的數(shù)組
    NSArray *array = [super layoutAttributesForElementsInRect:rect];
    //獲取屏幕中心點(diǎn)的x坐標(biāo)
    CGFloat centerX = self.collectionView.frame.size.width/2 + self.collectionView.contentOffset.x;
    //遍歷
    for (UICollectionViewLayoutAttributes *attrs in array) {
        
        //item的中心點(diǎn)
        CGFloat itemCenterX = attrs.center.x;
        //縮放比例
        CGFloat scale = 1 + 0.5*(1 - ABS(itemCenterX - centerX))/200;
        //
        attrs.transform3D = CATransform3DMakeScale(scale, scale, 1);
    }

    return array;
}

@end

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末筝家,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子杆融,更是在濱河造成了極大的恐慌誊册,老刑警劉巖已维,帶你破解...
    沈念sama閱讀 212,686評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件斧蜕,死亡現(xiàn)場(chǎng)離奇詭異号显,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)鹦倚,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,668評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門河质,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人申鱼,你說我怎么就攤上這事愤诱。” “怎么了捐友?”我有些...
    開封第一講書人閱讀 158,160評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長溃槐。 經(jīng)常有香客問我匣砖,道長,這世上最難降的妖魔是什么昏滴? 我笑而不...
    開封第一講書人閱讀 56,736評(píng)論 1 284
  • 正文 為了忘掉前任猴鲫,我火速辦了婚禮,結(jié)果婚禮上谣殊,老公的妹妹穿的比我還像新娘拂共。我一直安慰自己,他們只是感情好姻几,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,847評(píng)論 6 386
  • 文/花漫 我一把揭開白布宜狐。 她就那樣靜靜地躺著势告,像睡著了一般。 火紅的嫁衣襯著肌膚如雪抚恒。 梳的紋絲不亂的頭發(fā)上咱台,一...
    開封第一講書人閱讀 50,043評(píng)論 1 291
  • 那天,我揣著相機(jī)與錄音俭驮,去河邊找鬼回溺。 笑死,一個(gè)胖子當(dāng)著我的面吹牛混萝,可吹牛的內(nèi)容都是我干的遗遵。 我是一名探鬼主播,決...
    沈念sama閱讀 39,129評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼逸嘀,長吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼车要!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起厘熟,我...
    開封第一講書人閱讀 37,872評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤屯蹦,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后绳姨,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體登澜,經(jīng)...
    沈念sama閱讀 44,318評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,645評(píng)論 2 327
  • 正文 我和宋清朗相戀三年飘庄,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了脑蠕。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,777評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡跪削,死狀恐怖谴仙,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情碾盐,我是刑警寧澤晃跺,帶...
    沈念sama閱讀 34,470評(píng)論 4 333
  • 正文 年R本政府宣布,位于F島的核電站毫玖,受9級(jí)特大地震影響掀虎,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜付枫,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,126評(píng)論 3 317
  • 文/蒙蒙 一烹玉、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧阐滩,春花似錦二打、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,861評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽症杏。三九已至,卻和暖如春莲趣,著一層夾襖步出監(jiān)牢的瞬間鸳慈,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,095評(píng)論 1 267
  • 我被黑心中介騙來泰國打工喧伞, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留走芋,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,589評(píng)論 2 362
  • 正文 我出身青樓潘鲫,卻偏偏與公主長得像翁逞,于是被迫代替她去往敵國和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子溉仑,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,687評(píng)論 2 351

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