Swift3.0~设置UICollectionView每组(section)的背景

参考原文:http://c0ming.me/different-section-background-color/
最近写的小项目中,UICollectionView每一组的背景都是指定的,但是UICollectionView 无法通过属性设置或数据源来为不同的 Section 设置不同的背景颜色。好发愁啊~~~~
幸好我们可以自定义布局,但是我们也不需要做太大的变动,只需自定义一个继承于UICollectionViewFlowLayout的YYCollectionViewFlowLayout,我们还是使用系统内置的Flow布局。

刚开始我就在想,这个Section的背景到底要用到UICollectionView的哪些属性呢?后来我查看各种资料,发现原来它用到的是 UICollectionView 的 Decoration(装饰) 视图 。Decoration 视图不同与Cell和Supplementary, 它无法通过数据源来设置,而是由布局对象来定义和管理。

无论是定义 Cell 视图、Supplementary 视图还是 Decoration 视图都是通过它们的 attributes(UICollectionViewLayoutAttributes)来定义的。CollectionView 通过这些 布局相关的属性 来对它们进行布局。来看看 UICollectionViewLayoutAttributes 有那些布局属性:

open var frame: CGRect
open var center: CGPoint
open var size: CGSize
open var transform3D: CATransform3D
@available(iOS 7.0, *)
open var bounds: CGRect
@available(iOS 7.0, *)
open var transform: CGAffineTransform
open var alpha: CGFloat
open var zIndex: Int // default is 0
open var isHidden: Bool // As an optimization, UICollectionView might not create a view for items whose hidden attribute is YES
open var indexPath: IndexPath

蓝瘦香菇没有我们想要的颜色属性,那我们就先来定义一个继承于UICollectionViewLayoutAttributes 的子类,然后自己定义一个backgroundColor属性吧:

  class YYCollectionViewLayoutAttributes: UICollectionViewLayoutAttributes {  
       var backgroundColor = UIColor.clear
  }
Cell 视图、Supplementary 视图它们都是 UICollectionReusableView 的子类,Decoration 视图也不例外。但前面已说到 Decoration 视图无法通过数据源来设置,也没有 dequeue 相关的方法,自定义的属性只能通过 UICollectionReusableView 的 apply 方法在 CollectionView 布局时来使之生效。
class YYCollectionReusableView: UICollectionReusableView {

    override func apply(_ layoutAttributes: UICollectionViewLayoutAttributes) {
    super.apply(layoutAttributes)

        guard let attr = layoutAttributes as? YYCollectionViewLayoutAttributes else {
            return
        }

        self.backgroundColor = attr.backgroundColor
    }
 }
注册>定义>返回
  • 注册: 布局对象注册 Decoration 视图;

  • 定义: 在适当的地方定义 Decoration 视图的布局 attributes;

  • 返回: 在布局对象的 layoutAttributesForElementsInRect 方法返回 Decoration 视图的布局 attributes。

    class YYCollectionViewFlowLayout: UICollectionViewFlowLayout {
    
       private var decorationViewAttrs: [UICollectionViewLayoutAttributes] = []
    
      // MARK: - Init
      override init() {
         super.init()
         setup()
      }
    
      required init?(coder aDecoder: NSCoder) {
          super.init(coder: aDecoder)
      }   
    
      override func awakeFromNib() {
          super.awakeFromNib()
          setup()
      }
    
      // MARK: - Setup
      func setup() {
          // 1、注册
          self.register(YYCollectionReusableView.classForCoder(), forDecorationViewOfKind: SectionBackground)
      }
    
      override func prepare() {
          super.prepare()
      
         guard let numberOfSections = self.collectionView?.numberOfSections,
              let delegate = self.collectionView?.delegate as? YYCollectionViewDelegateFlowLayout
             else {
                return
         }
      
         self.decorationViewAttrs.removeAll()
         for section in 0..<numberOfSections {
              guard let numberOfItems = self.collectionView?.numberOfItems(inSection: section),
              numberOfItems > 0,
                 let firstItem = self.layoutAttributesForItem(at: IndexPath(item: 0, section: section)),
                 let lastItem = self.layoutAttributesForItem(at: IndexPath(item: numberOfItems - 1, section: section)) else {
                 continue
          }
          var sectionInset = self.sectionInset
          if let inset = delegate.collectionView?(self.collectionView!, layout: self, insetForSectionAt: section) {
              sectionInset = inset
          }
          
          var sectionFrame = firstItem.frame.union(lastItem.frame)
          sectionFrame.origin.x = 0
          sectionFrame.origin.y -= sectionInset.top
          
          if self.scrollDirection == .horizontal {
              sectionFrame.size.width += sectionInset.left + sectionInset.right
              sectionFrame.size.height = self.collectionView!.frame.height
          } else {
              sectionFrame.size.width = self.collectionView!.frame.width
              sectionFrame.size.height += sectionInset.top + sectionInset.bottom
          }
          
          // 2、定义
          let attr = YYCollectionViewLayoutAttributes(forDecorationViewOfKind: SectionBackground, with: IndexPath(item: 0, section: section))
          attr.frame = sectionFrame
          attr.zIndex = -1
          attr.backgroundColor = delegate.collectionView(self.collectionView!, layout: self, backgroundColorForSectionAt: section)
          self.decorationViewAttrs.append(attr)
      }
    }
    
     override func layoutAttributesForElements(in rect: CGRect) -> [UICollectionViewLayoutAttributes]? {
      var attrs = super.layoutAttributesForElements(in: rect)
      attrs?.append(contentsOf: self.decorationViewAttrs.filter {
          return rect.intersects($0.frame)
      })
          return attrs // 3、返回
     }
    }
    

添加代理:

 protocol YYCollectionViewDelegateFlowLayout: UICollectionViewDelegateFlowLayout {
     func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, backgroundColorForSectionAt section: Int) -> UIColor
 }

 extension YYCollectionViewDelegateFlowLayout {
   func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, backgroundColorForSectionAt section: Int) -> UIColor {
    return UIColor.clear
  }
 }
最后,我们在Controller中遵循YYCollectionViewDelegateFlowLayout,并实现代理方法就OK啦
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, backgroundColorForSectionAt section: Int) -> UIColor {
    if section == 0 {
        return UIColor.red
    } else if section == 1 {
        return UIColor.yellow
    } else if section == 2 {
        return UIColor.brown.withAlphaComponent(0.8)
    }
    return UIColor.blue
}
SectionBackgroundColor.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345

推荐阅读更多精彩内容