規(guī)則流水布局與不規(guī)則流水布局

規(guī)則流水布局

1.首先自定義布局繼承于流水布局.
在流水布局的基礎(chǔ)上進(jìn)行布局的重新設(shè)置
2.重寫布局中的方法, 讓每個(gè)Item根據(jù)自己想要尺寸進(jìn)行對(duì)應(yīng)設(shè)置.
3.設(shè)置contentSize,設(shè)置滾動(dòng)區(qū)域

// 1.對(duì)每一個(gè)Item進(jìn)行布局
- (nullable NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect
{
    
//    [self.layoutAtts removeAllObjects];

    // 如果只是在原基礎(chǔ)上進(jìn)行修改译柏,則調(diào)用
//     NSArray *layoutAtts = [super layoutAttributesForElementsInRect:rect];
    
    // 返回 cell的個(gè)數(shù)哈误,進(jìn)行一個(gè)個(gè)重新布局
    NSInteger count = [self.collectionView numberOfItemsInSection:0];
    
    CGFloat W = self.collectionView.frame.size.width * 0.5;
    CGFloat H = 0;
    CGFloat Y = 0;
    CGFloat X = 0;
    
    for (int i = 0; i < count ; i ++) {
        
        NSIndexPath *indexPath = [NSIndexPath indexPathForRow:i inSection:0];
        
        UICollectionViewLayoutAttributes *layoutAtt = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
        
        if (i == 0) {
             H = W;
             X = 0;
             Y = 0;
        }else if (i == 1){
             H = W * 0.5;
             X = W;
             Y = 0;
        }else if (i == 2){
             H = W * 0.5;
             X = W;
             Y = W * 0.5;
        }else if (i == 3){
             H = W * 0.5;
             X = 0;
             Y = W;
        
        }else if (i == 4){
             H = W * 0.5;
             X = 0;
             Y = H *3;
        }else if (i == 5){
             H = W;
             Y = W;
             X = W;
        }else{
            
            // 取出 上一輪的 嗜闻,進(jìn)行改變盲再,然后再 在 原來值的基礎(chǔ)上的Y值進(jìn)行修改胁镐,得到新的Y值闽寡,再進(jìn)行賦值賦值
            UICollectionViewLayoutAttributes *lastLayoutAtt = self.layoutAtts[i - 6];
            
            CGRect lastFrame = lastLayoutAtt.frame;
            
            H =  lastFrame.size.height;
            Y =  lastFrame.origin.y + 2 * W;
            X =  lastFrame.origin.x;
        }
        
        layoutAtt.frame = CGRectMake(X, Y, W, H);
        [self.layoutAtts addObject:layoutAtt];
    }

//        UICollectionViewLayoutAttributes *layoutAtt = (UICollectionViewLayoutAttributes *) self.layoutAtts.lastObject;
    
//    self.collectionView.contentSize = CGSizeMake( self.collectionView.frame.size.width,CGRectGetMaxY(layoutAtt.frame));
    

    return self.layoutAtts;
}
// 2.設(shè)置滾動(dòng)區(qū)域ContentSize
// 布局 必須寫到 get方法中吠冤,是屬于 系統(tǒng)自調(diào)的方法电谣。
- (CGSize)collectionViewContentSize
{
//    NSLog(@"%zd",self.layoutAtts.count);
//     NSInteger rows = (self.layoutAtts.count + 2) / 3;
// 根據(jù)最后一個(gè)Itme來決定滾動(dòng)區(qū)域    
    UICollectionViewLayoutAttributes *layoutAtt = (UICollectionViewLayoutAttributes *) self.layoutAtts.lastObject;
//    return CGSizeMake( self.collectionView.frame.size.width,CGRectGetMaxY(layoutAtt.frame));

    
    if (layoutAtt.frame.origin.x == 0){

        return CGSizeMake( self.collectionView.frame.size.width,CGRectGetMaxY(layoutAtt.frame));

    }else{
        return CGSizeMake(self.collectionView.frame.size.width, (CGRectGetMaxY(layoutAtt.frame) + layoutAtt.size.height));
    
    }
    
    
//    CGFloat cellH = self.collectionView.frame.size.width * 0.5;
//    
//    return CGSizeMake(self.collectionView.frame.size.width, cellH * rows);
}

不規(guī)則布局


圖形實(shí)例, 除第一行以外,所有的Item都是現(xiàn)排在最短的一列中.
所以我們需要做的是:
1.自定義布局由于修改部分較多,所以不必繼承于流水布局,可以自己設(shè)置布局元素
2.重寫對(duì)每個(gè)Item的布局
2.1.建立數(shù)組用于保存每一列現(xiàn)有的高度
2.2. 求出最小的高度,最為下一個(gè)item的初始高度, 當(dāng)Item寫入,更新當(dāng)前列的高度.

  1. 計(jì)算滾動(dòng)區(qū)域,最長(zhǎng)列決定
//.h文件
@class LXLWaterFlowLayout;
// 設(shè)置代理
@protocol LXLWaterFlowLayoutDelegate<NSObject>
@required

- (CGFloat)waterFlowLayout:(LXLWaterFlowLayout *)waterFlowLayout indexPath:(NSIndexPath *)indexPath withWidth:(CGFloat)width;

@end
@interface LXLWaterFlowLayout : UICollectionViewLayout

// 提供方法秽梅,供外界調(diào)用
- (void)setHorzontalMargin:(CGFloat) horizontalMargin;
- (void)setVerticalMargin:(CGFloat) verticalMargin;
- (void)setMaxColumns:(NSInteger) maxColumns;
- (void)setInserts:(UIEdgeInsets) inserts;

// 設(shè)置代理,用于從外界拿到高度
@property(nonatomic,weak) id<LXLWaterFlowLayoutDelegate> delegate;

// .m文件

@interface LXLWaterFlowLayout ()
// 添加成員變量
{
    // 用來設(shè)置水平間距
    CGFloat _horizontalMargin ;
    // 用來設(shè)置豎直間距
    CGFloat _verticalMargin ;
    // 最大的列數(shù)
    NSInteger _maxColumns ;
    // 每個(gè)item的四邊劇
    UIEdgeInsets _insets;
    
}
// 加入相關(guān)屬性
// 保存每一列的高度
@property (strong, nonatomic) NSMutableArray *perColumnMaxHeights;
// 保存所有元素的相關(guān)屬性
@property (strong, nonatomic) NSMutableArray *layoutAtts;

@end

@implementation LXLWaterFlowLayout

- (instancetype)init
{
    if (self = [super init]) {
        
// 當(dāng)外界沒有數(shù)據(jù)則按初始化數(shù)據(jù)執(zhí)行
        _maxColumns = 3;
        _horizontalMargin = 10;
        _verticalMargin = 10;
        
        _insets = UIEdgeInsetsMake(0, 0, 0, 0);
    }

    return self;

}

- (NSMutableArray *)layoutAtts
{
    if (!_layoutAtts) {
        _layoutAtts = [NSMutableArray array];
    }

    return _layoutAtts;
}

- (NSMutableArray *)perColumnMaxHeights
{
    if (!_perColumnMaxHeights) {
        _perColumnMaxHeights = [NSMutableArray array];
        
    }
    
    return _perColumnMaxHeights;
    
}

// 因?yàn)樵?“l(fā)ayoutAttributesForElementsInRect”可能調(diào)用多次剿牺,計(jì)算多次风纠, 而導(dǎo)致每次的隨機(jī)數(shù),都不一樣牢贸, 而造成覆蓋現(xiàn)象
// 所以在 預(yù)布局中處理竹观, 可以只計(jì)算一次
- (void)prepareLayout
{
    [self.perColumnMaxHeights removeAllObjects];
    [self.layoutAtts removeAllObjects];
    
    NSInteger count = [self.collectionView numberOfItemsInSection:0];
    // 初始化數(shù)組高度,因?yàn)榈谝恍?不需要按照高度大小添加
    for (int i = 0; i < _maxColumns; i ++) {
        [self.perColumnMaxHeights addObject:@(_insets.top)];
    }
    
    CGFloat W = (self.collectionView.frame.size.width - _insets.left - _insets.right - (_maxColumns - 1) * _horizontalMargin ) / _maxColumns;
    
    
    CGFloat H ;
    
    CGFloat X,Y;
    
    for (int i = 0; i < count; i++) {
        
        NSIndexPath *indexPath = [NSIndexPath indexPathForItem:i inSection:0];
        
        UICollectionViewLayoutAttributes *layoutAtt = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
        
        // 求出高度最小的列, 計(jì)算出 Y值
        Y = [self.perColumnMaxHeights[[self minColumn]] floatValue]+ _verticalMargin;
        // 計(jì)算出 X 值
        X = _insets.left +[self minColumn] * (W + _horizontalMargin) ;
        
        // 通過代理計(jì)算出 高度
        if ([self.delegate respondsToSelector:@selector(waterFlowLayout:indexPath:withWidth:)]) {
           
                H = [self.delegate waterFlowLayout:self indexPath:indexPath withWidth:W];
        }else{
        H = 70 + arc4random_uniform(100);
        }
        
        // 將新算出來的高度,替換 原來數(shù)組中對(duì)應(yīng)的最低高度位置
        [self.perColumnMaxHeights replaceObjectAtIndex:[self minColumn] withObject:@(Y + H)];
        
        layoutAtt.frame = CGRectMake(X, Y, W, H);
        
        [self.layoutAtts addObject:layoutAtt];
    }

}

- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect
{
  
    return self.layoutAtts;
}

// 計(jì)算最小高度的列
- (NSInteger)minColumn
{
    NSInteger minColumn = 0;
    
    CGFloat minHeight = [self.perColumnMaxHeights[0] floatValue];
    
    for (int i = 1; i < self.perColumnMaxHeights.count; i ++) {
        
        CGFloat height = [self.perColumnMaxHeights[i] floatValue];
        if (height < minHeight) {
            minHeight = height;
            minColumn = i;
        }
    }
    
    return minColumn;
}

// 計(jì)算最大高度的列 臭增,(用在設(shè)置 contensize)
- (NSInteger)maxColumn
{
    NSInteger maxColumn = 0;
    
    CGFloat maxHeight = [self.perColumnMaxHeights[0] floatValue];
    
    for (int i = 1; i < self.perColumnMaxHeights.count; i ++) {
        
        CGFloat height = [self.perColumnMaxHeights[i] floatValue];
        if (height > maxHeight) {
            maxHeight = height;
            maxColumn = i;
        }
    }
    
    return maxColumn;
}


- (CGSize)collectionViewContentSize
{


    if (self.perColumnMaxHeights.count == 0) {
        
        return CGSizeZero;
             }

    return CGSizeMake(self.collectionView.bounds.size.width,  [self.perColumnMaxHeights[[self maxColumn]] floatValue] + _insets.bottom);


}

- (void)setHorzontalMargin:(CGFloat)horizontalMargin
{
    _horizontalMargin = horizontalMargin;

}
- (void)setVerticalMargin:(CGFloat)verticalMargin
{

    _verticalMargin = verticalMargin;

}

- (void)setMaxColumns:(NSInteger)maxColumns
{

    if (maxColumns == 0) {
        return;
    }
    _maxColumns = maxColumns;

}
-(void)setInserts:(UIEdgeInsets)inserts
{
    _insets = inserts;

}
不規(guī)則布局.gif
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末懂酱,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子誊抛,更是在濱河造成了極大的恐慌列牺,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,978評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件拗窃,死亡現(xiàn)場(chǎng)離奇詭異瞎领,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)随夸,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門九默,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人宾毒,你說我怎么就攤上這事驼修。” “怎么了诈铛?”我有些...
    開封第一講書人閱讀 156,623評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵乙各,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我幢竹,道長(zhǎng)耳峦,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,324評(píng)論 1 282
  • 正文 為了忘掉前任焕毫,我火速辦了婚禮蹲坷,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘咬荷。我一直安慰自己冠句,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,390評(píng)論 5 384
  • 文/花漫 我一把揭開白布幸乒。 她就那樣靜靜地躺著懦底,像睡著了一般。 火紅的嫁衣襯著肌膚如雪罕扎。 梳的紋絲不亂的頭發(fā)上聚唐,一...
    開封第一講書人閱讀 49,741評(píng)論 1 289
  • 那天,我揣著相機(jī)與錄音腔召,去河邊找鬼杆查。 笑死,一個(gè)胖子當(dāng)著我的面吹牛臀蛛,可吹牛的內(nèi)容都是我干的亲桦。 我是一名探鬼主播崖蜜,決...
    沈念sama閱讀 38,892評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼客峭!你這毒婦竟也來了豫领?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,655評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤舔琅,失蹤者是張志新(化名)和其女友劉穎等恐,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體备蚓,經(jīng)...
    沈念sama閱讀 44,104評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡课蔬,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,451評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了郊尝。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片二跋。...
    茶點(diǎn)故事閱讀 38,569評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖虚循,靈堂內(nèi)的尸體忽然破棺而出同欠,到底是詐尸還是另有隱情样傍,我是刑警寧澤横缔,帶...
    沈念sama閱讀 34,254評(píng)論 4 328
  • 正文 年R本政府宣布,位于F島的核電站衫哥,受9級(jí)特大地震影響茎刚,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜撤逢,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,834評(píng)論 3 312
  • 文/蒙蒙 一膛锭、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧蚊荣,春花似錦初狰、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至媳叨,卻和暖如春腥光,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背糊秆。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評(píng)論 1 264
  • 我被黑心中介騙來泰國(guó)打工武福, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人痘番。 一個(gè)月前我還...
    沈念sama閱讀 46,260評(píng)論 2 360
  • 正文 我出身青樓捉片,卻偏偏與公主長(zhǎng)得像平痰,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子伍纫,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,446評(píng)論 2 348

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