iOS 自定義layout布局多section界面

在網(wǎng)上看了好多l(xiāng)ayout,發(fā)現(xiàn)多section的布局很少袖迎,這篇文章主要實(shí)現(xiàn)以下界面鸽心,采用collectionView實(shí)現(xiàn)-- collectionViewLayout的使用請(qǐng)自行查找

1388874-7cbf28a095623abc.gif

思路:共有4種cell聊闯,4種布局布疼,自定義collectionViewLayout
1.頂部一個(gè)banner摊趾,6個(gè)item的布局

2.一個(gè)banner,2個(gè)item布局
3.左側(cè)兩個(gè)item游两,右側(cè)一個(gè)的布局
4.左側(cè)一個(gè)item砾层,右側(cè)2個(gè)的布局

代碼如下

layout.h 代理設(shè)置section頭視圖和尾視圖的高度
@protocol ServiceLayoutDelegate <NSObject>@optional;-(CGFloat)heightOfSectionHeaderForIndexPath:(NSIndexPath *)indexPath;-(CGFloat)heightOfSectionFooterForIndexPath:(NSIndexPath *)indexPath;@end@interface ServiceLayout : UICollectionViewLayout@property (nonatomic, assign) id<ServiceLayoutDelegate>delegate;@end

layout.m
@interface ServiceLayout ()@property (nonatomic, assign) CGFloat totalHeight; ///總高度@property (nonatomic, strong) NSMutableArray *attrsArr; /// item布局屬性數(shù)組@end@implementation ServiceLayout-(void)prepareLayout { [super prepareLayout]; self.totalHeight = 0; NSMutableArray *attributesArr = [NSMutableArray array]; NSInteger sectionCount = [self.collectionView numberOfSections]; for (int i = 0; i < sectionCount; i++) { NSIndexPath *indexP = [NSIndexPath indexPathWithIndex:i]; /// header布局 UICollectionViewLayoutAttributes *attr = [self layoutAttributesForSupplementaryViewOfKind:UICollectionElementKindSectionHeader atIndexPath:indexP]; [attributesArr addObject:attr]; /// item布局 NSInteger itemCount = [self.collectionView numberOfItemsInSection:i]; for (int j = 0; j < itemCount; j++) { NSIndexPath *indexPath = [NSIndexPath indexPathForItem:j inSection:i]; UICollectionViewLayoutAttributes *attrs = [self layoutAttributesForItemAtIndexPath:indexPath]; [attributesArr addObject:attrs]; } /// footer布局 UICollectionViewLayoutAttributes *attr1 = [self layoutAttributesForSupplementaryViewOfKind:UICollectionElementKindSectionFooter atIndexPath:indexP]; [attributesArr addObject:attr1]; } self.attrsArr = [NSMutableArray arrayWithArray:attributesArr];}/// contentSize-(CGSize)collectionViewContentSize { return CGSizeMake(self.collectionView.bounds.size.width, self.totalHeight);}-(UICollectionViewLayoutAttributes *)layoutAttributesForSupplementaryViewOfKind:(NSString *)elementKind atIndexPath:(NSIndexPath *)indexPath { UICollectionViewLayoutAttributes *layoutAttrs = [UICollectionViewLayoutAttributes layoutAttributesForSupplementaryViewOfKind:elementKind withIndexPath:indexPath]; CGFloat height = 0; if (elementKind == UICollectionElementKindSectionHeader) { if (_delegate != nil && [_delegate respondsToSelector:@selector(heightOfSectionHeaderForIndexPath:)]) { height = [_delegate heightOfSectionHeaderForIndexPath:indexPath]; } } else { if (_delegate != nil && [_delegate respondsToSelector:@selector(heightOfSectionFooterForIndexPath:)]) { height = [_delegate heightOfSectionFooterForIndexPath:indexPath]; } } layoutAttrs.frame = CGRectMake(0, self.totalHeight, SCREEN_WIDTH, height); self.totalHeight += height; return layoutAttrs;}-(NSArray<UICollectionViewLayoutAttributes *> *)layoutAttributesForElementsInRect:(CGRect)rect{ return self.attrsArr;}- (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath { UICollectionViewLayoutAttributes *layoutAttributes = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath]; switch (indexPath.section) { case 0: [self layoutAttributesForServiceLayout:layoutAttributes indexPath:indexPath]; break; case 1: [self layoutAttributesForCopyRightlayout:layoutAttributes indexPath:indexPath]; break; case 2: [self layoutAttributesForPatentLayout:layoutAttributes indexPath:indexPath]; break; case 3: [self layoutAttributesForCaseLayout:layoutAttributes indexPath:indexPath]; break; default: break; } return layoutAttributes;}/// 服務(wù)- (void)layoutAttributesForServiceLayout:(UICollectionViewLayoutAttributes *)layoutAttributes indexPath: (NSIndexPath *) indexPath { CGFloat y = self.totalHeight; if (indexPath.item == 0) { layoutAttributes.frame = CGRectMake(0, y, SCREEN_WIDTH, kBaseLine(85)); self.totalHeight += kBaseLine(85); } else { if (indexPath.item > 6) { return; } long row = (indexPath.item -1) % 3; CGFloat width = SCREEN_WIDTH / 3.0; layoutAttributes.frame = CGRectMake(row * width, y, width, kBaseLine(100)); if (indexPath.item == 3 || indexPath.item == [self.collectionView numberOfItemsInSection:indexPath.section] - 1) { self.totalHeight += kBaseLine(100); } }}/// 以下實(shí)現(xiàn)移步demo- (void)layoutAttributesForCopyRightlayout:(UICollectionViewLayoutAttributes *)layoutAttributes indexPath: (NSIndexPath *) indexPath {}- (void)layoutAttributesForPatentLayout:(UICollectionViewLayoutAttributes *)layoutAttributes indexPath: (NSIndexPath *) indexPath {}- (void)layoutAttributesForCaseLayout:(UICollectionViewLayoutAttributes *)layoutAttributes indexPath: (NSIndexPath *) indexPath {}@end

ViewController中正常使用collectionView,設(shè)置layout代理
ServiceLayout *layout = [[ServiceLayout alloc]init];layout.delegate = self;-(CGFloat)heightOfSectionFooterForIndexPath:(NSIndexPath *)indexPath { return 15;}-(CGFloat)heightOfSectionHeaderForIndexPath:(NSIndexPath *)indexPath { return 50;}

設(shè)置header贱案、footer View
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath { if (kind == UICollectionElementKindSectionHeader) { HeaderReusableView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"ServiceHeaderReusableView" forIndexPath:indexPath]; headerView.imgView.image = [UIImage imageNamed:@"ser_b1"]; return headerView; } else { FooterReusableView *footerView = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:@"ServiceFooterReusableView" forIndexPath:indexPath]; return footerView; }}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末肛炮,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌铸董,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,248評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件肴沫,死亡現(xiàn)場(chǎng)離奇詭異粟害,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)颤芬,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門(mén)悲幅,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人站蝠,你說(shuō)我怎么就攤上這事汰具。” “怎么了菱魔?”我有些...
    開(kāi)封第一講書(shū)人閱讀 153,443評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵留荔,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我澜倦,道長(zhǎng)聚蝶,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,475評(píng)論 1 279
  • 正文 為了忘掉前任藻治,我火速辦了婚禮碘勉,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘桩卵。我一直安慰自己验靡,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,458評(píng)論 5 374
  • 文/花漫 我一把揭開(kāi)白布雏节。 她就那樣靜靜地躺著胜嗓,像睡著了一般。 火紅的嫁衣襯著肌膚如雪钩乍。 梳的紋絲不亂的頭發(fā)上兼蕊,一...
    開(kāi)封第一講書(shū)人閱讀 49,185評(píng)論 1 284
  • 那天,我揣著相機(jī)與錄音件蚕,去河邊找鬼孙技。 笑死,一個(gè)胖子當(dāng)著我的面吹牛排作,可吹牛的內(nèi)容都是我干的牵啦。 我是一名探鬼主播,決...
    沈念sama閱讀 38,451評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼妄痪,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼哈雏!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 37,112評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤裳瘪,失蹤者是張志新(化名)和其女友劉穎土浸,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體彭羹,經(jīng)...
    沈念sama閱讀 43,609評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡黄伊,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,083評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了派殷。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片还最。...
    茶點(diǎn)故事閱讀 38,163評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖毡惜,靈堂內(nèi)的尸體忽然破棺而出拓轻,到底是詐尸還是另有隱情,我是刑警寧澤经伙,帶...
    沈念sama閱讀 33,803評(píng)論 4 323
  • 正文 年R本政府宣布扶叉,位于F島的核電站,受9級(jí)特大地震影響帕膜,放射性物質(zhì)發(fā)生泄漏辜梳。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,357評(píng)論 3 307
  • 文/蒙蒙 一泳叠、第九天 我趴在偏房一處隱蔽的房頂上張望作瞄。 院中可真熱鬧,春花似錦危纫、人聲如沸宗挥。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,357評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)契耿。三九已至,卻和暖如春螃征,著一層夾襖步出監(jiān)牢的瞬間搪桂,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,590評(píng)論 1 261
  • 我被黑心中介騙來(lái)泰國(guó)打工盯滚, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留踢械,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,636評(píng)論 2 355
  • 正文 我出身青樓魄藕,卻偏偏與公主長(zhǎng)得像内列,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子背率,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,925評(píng)論 2 344

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