Swift-為UICollectionView的每一個(gè)Section添加不同的樣式或者背景

先說一下整體的邏輯:由于iOS自帶的UICollectionViewFlowLayout是不支持每一個(gè)section帶有不同的樣式,所以要想實(shí)現(xiàn)這個(gè)就要自定義一個(gè)集成自UICollectionViewFlowLayoutLayout。下面來看具體的實(shí)現(xiàn):
1链峭、首先創(chuàng)建QSLayoutAttributes類集成自UICollectionViewLayoutAttributes袁串,從名字上看我們就知道這個(gè)類是存儲layout樣式屬性的類其掂,這里直接上代碼了:

import UIKit

class QSLayoutAttributes: UICollectionViewLayoutAttributes {
    /// 添加組背景
    var backgroundColor:UIColor?
    /// 添加組圓角
    var corners:UIRectCorner?
    /// 添加組圓角的大小
    var sectionCornerRadii:CGSize?
}

當(dāng)然我這里只是簡單的定義了幾個(gè)樣式的屬性靶累,如果需求可根據(jù)自身需求無線的擴(kuò)展敏释。
2碍彭、下面這個(gè)類QSReusableView集成自UICollectionReusableView這實(shí)際上是一個(gè)裝飾類晤硕,這里就是用這個(gè)來作為整個(gè)組的背景。

class QSReusableView: UICollectionReusableView {
    
    override func apply(_ layoutAttributes: UICollectionViewLayoutAttributes) {
        super.apply(layoutAttributes)
        
        if layoutAttributes.isKind(of: QSLayoutAttributes.self) {
          
            let layoutAttribute  = layoutAttributes as? QSLayoutAttributes
            if layoutAttribute!.backgroundColor != nil {
                self.backgroundColor = layoutAttribute!.backgroundColor
            }
            /// 默認(rèn)設(shè)置為 0 以后有需要可以自定義
            if layoutAttribute!.corners != nil {
                self.setRadius(0, withRectCorners: layoutAttribute!.corners!)
            }
        }
    }
}

3庇忌、那么重點(diǎn)來了舞箍,直接上代碼

import UIKit

let kDefaultCornerRadii = CGSize(width: 0, height: 0)

class QSCollectionViewLayout: UICollectionViewFlowLayout {
    /// 存儲添加的屬性
    private var layoutAttributes:Array<UICollectionViewLayoutAttributes>?
    /// CollectionView的邊距  這個(gè)值可以自定義 默認(rèn)是0
    public var marginValue:CGFloat = 0
    
    override init() {
        super.init()
        
        self.layoutAttributes = []
        /// 注冊一個(gè)修飾View,這個(gè)UIView就是用來做樣式展示的
        self.registDecorationView()
    }
    
    func registDecorationView() {
        self.register(QSReusableView.self, forDecorationViewOfKind: QSReusableView.className())
    }
    
    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
}
// MARK: - override
extension QSCollectionViewLayout{
    
    // NOTE: 該方法會在你每次刷新collection data的時(shí)候都會調(diào)用
    override func prepare() {
        super.prepare()
        
        /// 避免屬性重復(fù)添加數(shù)據(jù)過大
        self.layoutAttributes?.removeAll()
        /// 設(shè)置背景和圓角
        self.setSectionBackgaoundColorAndCorner()
    }
    
    /// 返回rect中的所有的元素的布局屬性
    /// - Parameter rect: rect description
    override func layoutAttributesForElements(in rect: CGRect) -> [UICollectionViewLayoutAttributes]? {
        
        var attributes = super.layoutAttributesForElements(in: rect)
        for attribute in self.layoutAttributes! {
            
            ///判斷兩個(gè)區(qū)域是否有交集
            if rect.intersects(attribute.frame){
                attributes?.append(attribute)
            }
        }
        return attributes
    }
    
    /// 給Decorationview返回屬性數(shù)組
    override func layoutAttributesForDecorationView(ofKind elementKind: String, at indexPath: IndexPath) -> UICollectionViewLayoutAttributes? {
        
        if elementKind == QSReusableView.className() {
            return self.layoutAttributes![indexPath.section]
        }
        return super.layoutAttributesForDecorationView(ofKind: elementKind, at: indexPath)
    }
}
// MARK: - 設(shè)置屬性
extension QSCollectionViewLayout{
    /// 給collectionView設(shè)置背景和圓角
    func setSectionBackgaoundColorAndCorner(){
        /// 獲取collectionView的代理
        guard let delegate = self.collectionView?.delegate else {
            return
        }
        /// 沒遵守這個(gè)協(xié)議就不再往下設(shè)置
        if delegate.conforms(to: QSCollectionViewDelegateFlowLayout.self) == false {
            return
        }
        /// collectionView有多少組
        let numberOfSections = self.collectionView?.numberOfSections ?? 0
        if  numberOfSections == 0 {
            return
        }
        /// 循環(huán)遍歷各組 設(shè)置添加的屬性
        for section in 0..<numberOfSections {
            /// 一組cell的Item
            let numberOfItems = self.collectionView?.numberOfItems(inSection: section) ?? 0
            if (numberOfItems <= 0) {
                continue;
            }    
            /// 每一組第一個(gè)item的Attributes
            let firstItem = self.layoutAttributesForItem(at: IndexPath.init(item: 0, section: section))
            /// 每一組最后一個(gè)item的Attributes
            let lastItem  = self.layoutAttributesForItem(at: IndexPath.init(item: numberOfItems - 1, section: section))
            /// 滿足條件 結(jié)束本次循環(huán)執(zhí)行下一次
            if ((firstItem == nil) || (lastItem == nil)) {
                continue
            }     
            /// 實(shí)現(xiàn)了insetForSectionAt
            if delegate.responds(to: #selector(UICollectionViewDelegateFlowLayout.collectionView(_:layout:insetForSectionAt:))) {
                //邊距
                let inset = (delegate as? UICollectionViewDelegateFlowLayout)? .collectionView?(self.collectionView!, layout: self, insetForSectionAt: section)
                self.sectionInset = inset!
            }   
            /// 獲取第一個(gè)和最后一個(gè)item的聯(lián)合frame 皆疹,得到的就是這一組的frame
            var sectionFrame:CGRect = firstItem!.frame.union(lastItem!.frame)
            /// 設(shè)置它的x.y  注意理解這里的x點(diǎn)和y點(diǎn)的坐標(biāo)疏橄,不要硬搬,下面這樣寫的時(shí)候是把inset的left的
            /// 距離包含在sectionFrame 開始x的位置 下面的y同邏輯
            sectionFrame.origin.x -= self.sectionInset.left - self.marginValue
            sectionFrame.origin.y -= self.sectionInset.top
            ///橫向滾動
            if self.scrollDirection == .horizontal{
                        
                /// 計(jì)算組的寬的時(shí)候要把縮進(jìn)進(jìn)去的距離加回來 因?yàn)榭s進(jìn)是內(nèi)容縮進(jìn)
                sectionFrame.size.width += self.sectionInset.left + self.sectionInset.right
                /// 橫向滾動的時(shí)候 組的高就是collectionView的高
                sectionFrame.size.height = self.collectionView!.frame.size.height
            /// 縱向滾動
            }else{
                /// 縱向滾動的時(shí)候組的寬度  這里的道理和上面的x,y的一樣略就,需要你按照自己項(xiàng)目的實(shí)際需求去處理
                sectionFrame.size.width = self.collectionView!.frame.size.width - (2 * self.marginValue)
                sectionFrame.size.height += self.sectionInset.top + self.sectionInset.bottom
            }
            /// 根據(jù)自定義的CollectionViewSectionBackground 裝飾View初始化一個(gè)自定義的CollectionLayoutAttributes
            let attribute = QSLayoutAttributes.init(forDecorationViewOfKind:QSReusableView.className(),with: IndexPath.init(item: 0, section: section))
            attribute.frame  = sectionFrame
            attribute.zIndex = -1
                    
            /// 實(shí)現(xiàn)了backgroundColorForSection
            if delegate.responds(to: #selector(QSCollectionViewDelegateFlowLayout.backgroundColorForSection(collectionView:layout:section:))){  
                /// 背景色
                attribute.backgroundColor = (delegate as? QSCollectionViewDelegateFlowLayout)?.backgroundColorForSection!(collectionView: self.collectionView!, layout: self, section: section)
            } 
            /// 實(shí)現(xiàn)了cornerForSection
            if delegate.responds(to: #selector(QSCollectionViewDelegateFlowLayout.cornerForSection(collectionView:layout:section:))) {
/// 圓角
                attribute.corners = (delegate as? QSCollectionViewDelegateFlowLayout)?.cornerForSection!(collectionView: self.collectionView!, layout: self, section: section)
                /// 要是是默認(rèn)的大小就不在實(shí)現(xiàn)cornerRadiiForSection
                attribute.sectionCornerRadii = kDefaultCornerRadii;
            }
            /// 要是自定義了圓角大小
            if delegate.responds(to: #selector(QSCollectionViewDelegateFlowLayout.cornerRadiiForSection(collectionView:layout:section:))) {                attribute.sectionCornerRadii = (delegate as? QSCollectionViewDelegateFlowLayout)?.cornerRadiiForSection!(collectionView: self.collectionView!, layout: self, section: section)
            }
            self.layoutAttributes?.append(attribute)
        }
    }
}

//使用協(xié)議來設(shè)置具體的樣式
@objc protocol QSCollectionViewDelegateFlowLayout:UICollectionViewDelegateFlowLayout{
     
    /// CollectionView 的組設(shè)置背景顏色
    /// - Returns: return  組的顏色
    @objc optional func backgroundColorForSection(
                        collectionView:UICollectionView,
                        layout:UICollectionViewLayout,
                        section:NSInteger) -> UIColor
     
    /// CollectionView 的組設(shè)置圓角
    /// - Returns: UIRectCorner eg:[.topLeft,.topRight]
    @objc optional func cornerForSection(
                        collectionView:UICollectionView,
                        layout:UICollectionViewLayout,
                        section:NSInteger) -> UIRectCorner
     
    /// CollectionView 的組設(shè)置圓角的大小 要是默認(rèn)的0可不實(shí)現(xiàn)此方法返回
    /// - Returns: CGSize  圓角大小
    @objc optional func cornerRadiiForSection(
                        collectionView:UICollectionView,
                        layout:UICollectionViewLayout,
                        section:NSInteger) -> CGSize
}

4捎迫、基礎(chǔ)代碼就是這樣了,下面來怎么使用

//UICollectionView的定義
private lazy var collectionV:UICollectionView = {
        let layout = QSCollectionViewLayout()
        let _cv = UICollectionView(frame: self.view.bounds, collectionViewLayout: layout)
        _cv.delegate = self
        _cv.dataSource = self
        _cv.register(StatisticalCell.self, forCellWithReuseIdentifier: kCellId)
        _cv.register(FeeStaisticalCell.self, forCellWithReuseIdentifier: kFeeCellId)
        _cv.register(StatisticalHeaderView.self, forSupplementaryViewOfKind: UICollectionElementKindSectionHeader, withReuseIdentifier: kHeaderId)
        return _cv
}()

//實(shí)現(xiàn)協(xié)議表牢,需要哪些樣就實(shí)現(xiàn)哪些協(xié)議就好了
extension MyVC:QSCollectionViewDelegateFlowLayout{
//section的背景
func backgroundColorForSection(collectionView: UICollectionView, layout: UICollectionViewLayout, section: NSInteger) -> UIColor {
        return UIColor(hexString: "ffffff")
}
//section的圓角
func cornerForSection(
                        collectionView:UICollectionView,
                        layout:UICollectionViewLayout,
                        section:NSInteger) -> UIRectCorner{
//列如只需要上方圓角
        return [UIRectCorner.topLeft,UIRectCorner.topRight]
}
     
    //圓角大小
func cornerRadiiForSection(
                        collectionView:UICollectionView,
                        layout:UICollectionViewLayout,
                        section:NSInteger) -> CGSize{
       return CGSize(width: 10, height: 10)
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末窄绒,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子崔兴,更是在濱河造成了極大的恐慌彰导,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件敲茄,死亡現(xiàn)場離奇詭異位谋,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)堰燎,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進(jìn)店門掏父,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人爽待,你說我怎么就攤上這事损同。” “怎么了鸟款?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵膏燃,是天一觀的道長。 經(jīng)常有香客問我何什,道長组哩,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮伶贰,結(jié)果婚禮上蛛砰,老公的妹妹穿的比我還像新娘。我一直安慰自己黍衙,他們只是感情好泥畅,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著琅翻,像睡著了一般位仁。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上方椎,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天聂抢,我揣著相機(jī)與錄音,去河邊找鬼棠众。 笑死琳疏,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的闸拿。 我是一名探鬼主播空盼,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼胸墙!你這毒婦竟也來了我注?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤迟隅,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后励七,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體智袭,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年掠抬,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了吼野。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,059評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡两波,死狀恐怖瞳步,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情腰奋,我是刑警寧澤单起,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站劣坊,受9級特大地震影響嘀倒,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一测蘑、第九天 我趴在偏房一處隱蔽的房頂上張望灌危。 院中可真熱鬧,春花似錦碳胳、人聲如沸勇蝙。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽浅蚪。三九已至,卻和暖如春烫罩,著一層夾襖步出監(jiān)牢的瞬間惜傲,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工贝攒, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留盗誊,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓隘弊,卻偏偏與公主長得像哈踱,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子梨熙,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,792評論 2 345

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