自定義UICollectionView布局實現(xiàn)Masonry Layout

集合視圖(UICollectionView)的功能非常強大,它與表視圖(UITableView)非常相似,不同之處在于集合視圖本身并不知道自己應該怎樣布局劫灶,它將布局方式委托給了UICollectionLayout的子類怔昨。系統(tǒng)本身提供了一個強大的子類——流式布局(UICollectionViewFlowLayout)罩锐,可以通過設置scrollDirection屬性來選擇集合視圖是水平滾動還是豎直滾動蟀拷,也可以設置每個UICollectionViewCell之間的間隔强戴;這個類通過UICollectionViewDelegateFlowLayout協(xié)議調(diào)整每個UICollectionViewCell的大小翘县。

添加UICollectionview

添加集合視圖

使用代碼添加集合視圖,需要在init方法中選擇布局方式,具體方法是:- (instancetype)initWithFrame:(CGRect)frame collectionViewLayout:(UICollectionViewLayout *)layout;除此之外绩鸣,還需要指定集合視圖的cell類和cell的重用標識,具體方法是:- (void)registerClass:(Class)cellClass forCellWithReuseIdentifier:(NSString *)identifier;最后泳梆,也要像表視圖一樣指定delegatedataSource

UICollectionViewFlowLayout

若使用流式布局允蚣,還需要實現(xiàn)UICollectionViewDelegateFlowLayout協(xié)議來調(diào)整每個UICollectionViewCell的大泻恕:

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath;

做完這些工作后狈谊,可以看到的大致效果如下:

1.png

這是每個item的size都一樣的情況下的效果二庵,但是如果每個item的寬度一樣催享,高度卻不一樣會如何?答案是:
2.png

因為如果使用UICollectionViewFlowLayout裆操,該布局會先計算一行中所有item的最大高度踪区,然后開始布局下一行的item茅郎,這樣做就會使每個item都會占據(jù)這一行的最大高度惯豆,所以導致了這些空白裂明。解決方案就是自己自定義UICollectionViewLayout

Masonry Layout

要實現(xiàn)MasonryLayout(也稱石工布局)需要自定義UICollectionViewLayout尼荆。首先建立UICollectionViewLayout的子類并定義一個得到目標位置item大小的協(xié)議方法左腔,最后覆蓋UICollectionViewLayout的三個方法:

- (void)prepareLayout;  
- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect;  
- (CGSize)collectionViewContentSize;  

prepareLayout方法會在集合視圖開始布局前被調(diào)用,在這個方法中捅儒,需要計算item的布局方式液样;
layoutAttributesForElementsInRect:方法則需要返回在rect以內(nèi)的item的布局方式巧还;
collectionViewContentSize方法則需要返回當前集合視圖的contentSize

具體例子如下:

//MasonryLayout.h

#import <UIKit/UIKit.h>

#define MasonryCollectionViewSpaceWidth     10

typedef NS_ENUM(NSInteger, LayoutStyle) {
    LayoutStyleInOrder      = 0,    //順序排列cell
    LayoutStyleRegular      = 1,    //整齊排列cell
};

@protocol  MasonryLayoutDelegate;

@interface MasonryLayout : UICollectionViewLayout

@property (nonatomic, weak) id<MasonryLayoutDelegate> delegate;

- (instancetype)initWithLayoutStyle:(LayoutStyle)style;

@end

@protocol MasonryLayoutDelegate <NSObject>

//返回indexPath位置cell的高度
- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(MasonryLayout *)layout heightForItemAtIndexPath:(NSIndexPath *)indexPath;

@end
//MasonryLayout.m

#import "MasonryLayout.h"

@interface MasonryLayout ()
{
    NSUInteger                   _numberOfColumns; //列數(shù)
    
    NSMutableDictionary*        _layoutInfo;    //儲存每個cell的UICollectionViewLayoutAttributes
    NSMutableDictionary*        _lastYValueForColumn; //儲存每一列當前最大y坐標
    
    LayoutStyle                 _style;
}

@end

@implementation MasonryLayout

- (instancetype)initWithLayoutStyle:(LayoutStyle)style
{
    self = [super init];
    if (self) {
        _style = style;
    }
    return self;
}

- (void)prepareLayout
{
    _numberOfColumns = 2;  //有兩列cell
    
    _lastYValueForColumn = [NSMutableDictionary dictionary];
    _layoutInfo = [NSMutableDictionary dictionary];
    
    switch (_style) {
        case LayoutStyleInOrder:{
            [self getLayoutInfoInOrder];
        }
            break;
        case LayoutStyleRegular:{
            [self getLayoutInfoRegular];
        }
            break;
        default:
            break;
    }
}

- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect
{
    NSMutableArray *allAttributes = [NSMutableArray array];
    [_layoutInfo enumerateKeysAndObjectsUsingBlock:^(NSIndexPath *indexPath, UICollectionViewLayoutAttributes *attributes, BOOL *stop) {
        if (CGRectIntersectsRect(rect, attributes.frame)) {
            [allAttributes addObject:attributes];
        }
    }];
    return allAttributes;
}

- (CGSize)collectionViewContentSize
{
    NSUInteger currentColumns = 0;
    CGFloat maxHeight = 0;
    do {
        CGFloat height = [_lastYValueForColumn[@(currentColumns)] doubleValue];
        if (height > maxHeight) {
            maxHeight = height;
        }
        currentColumns ++;
    }while (currentColumns < _numberOfColumns);
    return CGSizeMake(self.collectionView.frame.size.width, maxHeight);
}

#pragma mark -- private function
- (void)getLayoutInfoInOrder
{
    NSUInteger currentColumn = 0;
    CGFloat itemWidth = ([UIScreen mainScreen].bounds.size.width - MasonryCollectionViewSpaceWidth * (_numberOfColumns + 1)) / _numberOfColumns;
    
    NSIndexPath *indexPath;
    NSInteger numberOfSection = [self.collectionView numberOfSections];
    
    for (NSInteger section = 0; section < numberOfSection; section++) {
        NSInteger numberOfItem = [self.collectionView numberOfItemsInSection:section];
        
        for (NSInteger item = 0; item < numberOfItem; item++) {
            indexPath = [NSIndexPath indexPathForItem:item inSection:section];
            
            UICollectionViewLayoutAttributes *itemAttributes = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
            
            CGFloat originX = MasonryCollectionViewSpaceWidth + (itemWidth + MasonryCollectionViewSpaceWidth) * currentColumn;
            CGFloat originY = [_lastYValueForColumn[@(currentColumn)] doubleValue];
            if (originY == 0.0) {
                originY = MasonryCollectionViewSpaceWidth;
            }
            
            CGFloat itemHeight = [self.delegate collectionView:self.collectionView layout:self heightForItemAtIndexPath:indexPath];
            
            itemAttributes.frame = CGRectMake(originX, originY, itemWidth, itemHeight);
            _layoutInfo[indexPath] = itemAttributes;
            _lastYValueForColumn[@(currentColumn)] = @(originY + itemHeight + MasonryCollectionViewSpaceWidth);
            
            currentColumn++;
            if (currentColumn == _numberOfColumns) {
                currentColumn = 0;
            }
            
        }
        
    }
}

- (void)getLayoutInfoRegular
{
    NSUInteger currentColumn = 0;
    CGFloat itemWidth = ([UIScreen mainScreen].bounds.size.width - MasonryCollectionViewSpaceWidth * (_numberOfColumns + 1)) / _numberOfColumns;
    
    NSIndexPath *indexPath;
    NSInteger numberOfSection = [self.collectionView numberOfSections];
    
    for (NSInteger section = 0; section < numberOfSection; section++) {
        NSInteger numberOfItem = [self.collectionView numberOfItemsInSection:section];
        
        for (NSInteger item = 0; item < numberOfItem; item++) {
            indexPath = [NSIndexPath indexPathForItem:item inSection:section];
            
            UICollectionViewLayoutAttributes *itemAttributes = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
            
            currentColumn = [self getMiniHeightColumn];
            CGFloat originX = MasonryCollectionViewSpaceWidth + (itemWidth + MasonryCollectionViewSpaceWidth) * currentColumn;
            CGFloat originY = [_lastYValueForColumn[@(currentColumn)] doubleValue];
            if (originY == 0.0) {
                originY = MasonryCollectionViewSpaceWidth;
            }
            
            CGFloat itemHeight = [self.delegate collectionView:self.collectionView layout:self heightForItemAtIndexPath:indexPath];
            
            itemAttributes.frame = CGRectMake(originX, originY, itemWidth, itemHeight);
            _layoutInfo[indexPath] = itemAttributes;
            _lastYValueForColumn[@(currentColumn)] = @(originY + itemHeight + MasonryCollectionViewSpaceWidth);
            
        }
        
    }
}

- (NSUInteger)getMiniHeightColumn
{
    NSInteger miniHeightColumn = 0;
    CGFloat miniHeight = [_lastYValueForColumn[@(miniHeightColumn)] doubleValue];
    for (NSUInteger column = 0; column < _numberOfColumns; column++) {
        CGFloat height = [_lastYValueForColumn[@(column)] doubleValue];
        if (height < miniHeight) {
            miniHeight = height;
            miniHeightColumn = column;
        }
    }
    return miniHeightColumn;
}

@end
//ViewController.m

#import "ViewController.h"
#import "MasonryLayout.h"

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

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.\
    
    MasonryLayout *layout = [MasonryLayout new];
    layout.delegate = self;
    
    UICollectionView *collectionView = [[UICollectionView alloc] initWithFrame:self.view.bounds collectionViewLayout:layout];
    [collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"cell"];
    collectionView.backgroundColor = [UIColor whiteColor];
    collectionView.delegate = self;
    collectionView.dataSource = self;
    
    [self.view addSubview:collectionView];
    
}

#pragma mark -- MasonryLayoutDelegate
- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(MasonryLayout *)layout heightForItemAtIndexPath:(NSIndexPath *)indexPath
{
    int x = arc4random() % 150 + 50; //生成50-200的隨機數(shù)
    return x;
}

#pragma mark -- UICollectionViewDataSource
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
    return 50;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"cell" forIndexPath:indexPath];
    cell.backgroundColor = [UIColor redColor];
    return cell;
}

效果如下:


3.png
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末鞭莽,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子麸祷,更是在濱河造成了極大的恐慌澎怒,老刑警劉巖,帶你破解...
    沈念sama閱讀 216,324評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件阶牍,死亡現(xiàn)場離奇詭異喷面,居然都是意外死亡,警方通過查閱死者的電腦和手機走孽,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,356評論 3 392
  • 文/潘曉璐 我一進店門惧辈,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人磕瓷,你說我怎么就攤上這事盒齿。” “怎么了困食?”我有些...
    開封第一講書人閱讀 162,328評論 0 353
  • 文/不壞的土叔 我叫張陵边翁,是天一觀的道長。 經(jīng)常有香客問我硕盹,道長符匾,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,147評論 1 292
  • 正文 為了忘掉前任瘩例,我火速辦了婚禮啊胶,結(jié)果婚禮上芒澜,老公的妹妹穿的比我還像新娘。我一直安慰自己创淡,他們只是感情好痴晦,可當我...
    茶點故事閱讀 67,160評論 6 388
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著琳彩,像睡著了一般誊酌。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上露乏,一...
    開封第一講書人閱讀 51,115評論 1 296
  • 那天碧浊,我揣著相機與錄音,去河邊找鬼瘟仿。 笑死箱锐,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的劳较。 我是一名探鬼主播驹止,決...
    沈念sama閱讀 40,025評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼观蜗!你這毒婦竟也來了臊恋?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 38,867評論 0 274
  • 序言:老撾萬榮一對情侶失蹤墓捻,失蹤者是張志新(化名)和其女友劉穎抖仅,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體砖第,經(jīng)...
    沈念sama閱讀 45,307評論 1 310
  • 正文 獨居荒郊野嶺守林人離奇死亡撤卢,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 37,528評論 2 332
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了梧兼。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片放吩。...
    茶點故事閱讀 39,688評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖袱院,靈堂內(nèi)的尸體忽然破棺而出屎慢,到底是詐尸還是另有隱情瞭稼,我是刑警寧澤忽洛,帶...
    沈念sama閱讀 35,409評論 5 343
  • 正文 年R本政府宣布,位于F島的核電站环肘,受9級特大地震影響欲虚,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜悔雹,卻給世界環(huán)境...
    茶點故事閱讀 41,001評論 3 325
  • 文/蒙蒙 一复哆、第九天 我趴在偏房一處隱蔽的房頂上張望欣喧。 院中可真熱鬧,春花似錦梯找、人聲如沸唆阿。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,657評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽驯鳖。三九已至,卻和暖如春久免,著一層夾襖步出監(jiān)牢的瞬間浅辙,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,811評論 1 268
  • 我被黑心中介騙來泰國打工阎姥, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留记舆,地道東北人。 一個月前我還...
    沈念sama閱讀 47,685評論 2 368
  • 正文 我出身青樓呼巴,卻偏偏與公主長得像泽腮,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子衣赶,可洞房花燭夜當晚...
    茶點故事閱讀 44,573評論 2 353

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

  • 翻譯自“Collection View Programming Guide for iOS” 0 關(guān)于iOS集合視...
    lakerszhy閱讀 3,859評論 1 22
  • 概述 UICollectionView是iOS開發(fā)中最常用的UI控件之一盛正,可以用它來管理一組有序的不同尺寸的視圖,...
    漸z閱讀 2,969評論 0 3
  • UICollectionView 在 iOS6 中第一次被引入屑埋,也是 UIKit視圖類中的一顆新星豪筝。它和 UITa...
    評評分分閱讀 1,626評論 0 10
  • 一、UICollectionView介紹 UICollectionView和UICollectionViewCon...
    無灃閱讀 4,485評論 4 18
  • 我今晚布置的日記作業(yè)是“今天的小測試”摘能。我們班的小朋友們沒有很驚訝续崖,他們似乎已經(jīng)接受了天天寫日記這事了。 當時第一...
    秋笏笑月閱讀 224評論 0 1