本篇文章為大家展示了怎么在iOS中使用UICollectionView實現(xiàn)列表頭部拉伸效果,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
成都創(chuàng)新互聯(lián)公司是一家朝氣蓬勃的網(wǎng)站建設(shè)公司。公司專注于為企業(yè)提供信息化建設(shè)解決方案。從事網(wǎng)站開發(fā),網(wǎng)站制作,網(wǎng)站設(shè)計,網(wǎng)站模板,微信公眾號開發(fā),軟件開發(fā),小程序制作,10余年建站對戶外休閑椅等多個領(lǐng)域,擁有豐富的網(wǎng)站制作經(jīng)驗。OC版本
創(chuàng)建一個類 CustomCollectionViewFlowLayout 繼承 UICollectionViewFlowLayout
#import "CustomCollectionViewFlowLayout.h" @implementation CustomCollectionViewFlowLayout - (BOOL)shouldInvalidateLayoutForBoundsChange:(CGRect)newBounds { return YES; } - (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect { UICollectionView *collectionView = [self collectionView]; UIEdgeInsets insets = [collectionView contentInset]; CGPoint offset = [collectionView contentOffset]; CGFloat minY = -insets.top; NSArray *attributes = [super layoutAttributesForElementsInRect:rect]; if (offset.y < minY) { CGSize headerSize = [self headerReferenceSize]; CGFloat deltaY = fabsf(offset.y - minY); for (UICollectionViewLayoutAttributes *attrs in attributes) { if ([attrs representedElementKind] == UICollectionElementKindSectionHeader) { CGRect headerRect = [attrs frame]; headerRect.size.height = MAX(minY, headerSize.height + deltaY); headerRect.origin.y = headerRect.origin.y - deltaY; [attrs setFrame:headerRect]; break; } } } return attributes; } @end
在控制器中使用 先導(dǎo)入頭文件
// 創(chuàng)建collectionView CustomCollectionViewFlowLayout *flowLayout=[[CustomCollectionViewFlowLayout alloc] init]; [flowLayout setSectionInset:UIEdgeInsetsMake(0, 0, 10, 0)]; [flowLayout setItemSize:CGSizeMake(kScreenWidth / collectionCellW, kScreenWidth / collectionCellW)]; [flowLayout setHeaderReferenceSize:CGSizeMake(kScreenWidth, userInfoImageViewH)]; [flowLayout setFooterReferenceSize:CGSizeMake(kScreenWidth, 83)]; [flowLayout setScrollDirection:UICollectionViewScrollDirectionVertical]; [flowLayout setMinimumInteritemSpacing:0.0]; [flowLayout setMinimumLineSpacing:0.0]; self.homeCollectionView = [[UICollectionView alloc]initWithFrame:CGRectMake(0, 0, kScreenWidth, kScreenHeight - 44)collectionViewLayout:flowLayout]; self.homeCollectionView.backgroundColor = kViewBackgroundColor; self.homeCollectionView.alwaysBounceVertical = YES; self.homeCollectionView.showsVerticalScrollIndicator = NO; //設(shè)置代理 self.homeCollectionView.delegate = self; self.homeCollectionView.dataSource = self; [self.view addSubview:self.homeCollectionView]; // 注冊表頭 [self.homeCollectionView registerClass:[YJHeaderCollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:kCollectionHeaderView]; // 注冊表尾 [self.homeCollectionView registerClass:[UICollectionReusableView class] forSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:kCollectionFooterView];
Swift版
喜歡swift 不需要導(dǎo)入頭文件那么麻煩
// // CustomCollectionViewFlowLayout.swift // // // Created by GongHui_YJ on 16/8/4. // Copyright © 2016年YangJian. All rights reserved. // import UIKit class CustomCollectionViewFlowLayout: UICollectionViewFlowLayout { override func shouldInvalidateLayoutForBoundsChange(newBounds: CGRect) -> Bool { return true } override func layoutAttributesForElementsInRect(rect: CGRect) -> [UICollectionViewLayoutAttributes]? { let collectionView = self.collectionView let insets = collectionView?.contentInset let offset = collectionView?.contentOffset let minY = -((insets?.top)!) let attributesArray = super.layoutAttributesForElementsInRect(rect) if offset!.y < minY { let headerSize = self.headerReferenceSize let deltaY = CGFloat(fabsf(Float((offset?.y)! - CGFloat(minY)))) for attrs:UICollectionViewLayoutAttributes in attributesArray! { if attrs.representedElementKind == UICollectionElementKindSectionHeader { var headerRect = attrs.frame headerRect.size.height = max(minY, headerSize.height + deltaY) headerRect.origin.y = headerRect.origin.y - deltaY attrs.frame = headerRect break } } } return attributesArray } }
在控制器 viewDidLoad方法實現(xiàn)
let customFlowLayout = CustomCollectionViewFlowLayout() customFlowLayout.headerReferenceSize = CGSizeMake(kScreenWidth, 203) customFlowLayout.footerReferenceSize = CGSizeMake(kScreenWidth, 83) customFlowLayout.minimumInteritemSpacing = 0 customFlowLayout.minimumLineSpacing = 0 customFlowLayout.itemSize = CGSizeMake(kScreenWidth / 3.000006, kScreenWidth / 3.00006) customFlowLayout.sectionInset = UIEdgeInsetsMake(0, 0, 10, 0) self.homeCollectionView.setCollectionViewLayout(customFlowLayout, animated: true) self.homeCollectionView.backgroundColor = kViewBackgroundColor self.homeCollectionView.alwaysBounceVertical = true let nib = UINib(nibName: "CommonCollectionViewCell", bundle: nil) self.homeCollectionView.registerNib(nib, forCellWithReuseIdentifier: cellId) // 注冊表頭表尾 let headerNib = UINib(nibName: "HeaderCollectionReusableView", bundle: nil) self.homeCollectionView.registerNib(headerNib, forSupplementaryViewOfKind: UICollectionElementKindSectionHeader, withReuseIdentifier: collectionHeaderId) self.homeCollectionView.registerClass(UICollectionReusableView.classForCoder(), forSupplementaryViewOfKind: UICollectionElementKindSectionFooter, withReuseIdentifier: collectionFooterId)
上述內(nèi)容就是怎么在iOS中使用UICollectionView實現(xiàn)列表頭部拉伸效果,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司行業(yè)資訊頻道。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)建站vcdvsql.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
本文標題:怎么在iOS中使用UICollectionView實現(xiàn)列表頭部拉伸效果-創(chuàng)新互聯(lián)
網(wǎng)站鏈接:http://vcdvsql.cn/article36/ejhsg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站、靜態(tài)網(wǎng)站、虛擬主機、網(wǎng)站設(shè)計、品牌網(wǎng)站制作、定制開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容