UICollectionView

初始化

lazy var clvData: UICollectionView = {
        
        let layout = UICollectionViewFlowLayout()
        layout.sectionInset = UIEdgeInsetsMake(0, 0, 0, 0)
        layout.minimumInteritemSpacing = 0; //列與列之間的間距
        layout.minimumLineSpacing = 0;//行與行之間的間距
        layout.itemSize = CGSize.init(width: kSCREEN_WIDTH/3, height: 100)
        
        let collectionView = UICollectionView.init(frame: .zero, collectionViewLayout: layout)
        collectionView.backgroundColor = UIColor.white
        collectionView.delegate = self
        collectionView.dataSource = self
        let cell = UINib.init(nibName: "KSampleClvCell", bundle: nil)
        collectionView.register(cell, forCellWithReuseIdentifier: "KSampleClvCell")
        return collectionView
    }()

self.view.addSubview(clvData)
        clvData.snp.makeConstraints { (make) -> Void in
            make.edges.equalTo(self.view)
        }

常用代理方法

extension WorkHomeVC: UICollectionViewDelegate, UICollectionViewDataSource ,UICollectionViewDelegateFlowLayout {
    
    
    func numberOfSections(in collectionView: UICollectionView) -> Int
    {
        return 1
    }
    
    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return dataArray.count
    }
    
    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell
    {
        
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "KSampleClvCell", for: indexPath) as! KSampleClvCell
        
        return cell
    }
    
}

注冊(cè)cell,SectionHead,SectionFoot

#IB 類(lèi)型
let secionHead = UINib.init(nibName: "MMSectionHeadView", bundle: nil)
collectionView.register(secionHead, forSupplementaryViewOfKind: UICollectionElementKindSectionHeader, withReuseIdentifier: "MMSectionHeadView")
collectionView.register(secionHead, forSupplementaryViewOfKind: UICollectionElementKindSectionFooter, withReuseIdentifier: "MMSectionHeadView")

#class 類(lèi)型
  collectionView.register(MMCollectCell.self, forCellWithReuseIdentifier:"MMCollectCell")
  collectionView.register(MMSectionHeadView.self, forSupplementaryViewOfKind:UICollectionElementKindSectionHeader, withReuseIdentifier: "MMSectionHeadView")
  collectionView.register(MMSectionFootView.self, forSupplementaryViewOfKind:UICollectionElementKindSectionFooter, withReuseIdentifier: "MMSectionFootView")

自定義 分區(qū)頭部显拜,尾部代理

    func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView
    {
        var v = UICollectionReusableView()
        if kind == UICollectionElementKindSectionHeader
        {
            v = collectionView.dequeueReusableSupplementaryView(ofKind: UICollectionElementKindSectionHeader, withReuseIdentifier: "MMSectionHeadView", for: indexPath)as! MMSectionHeadView
        }
        else if kind == UICollectionElementKindSectionFooter
        {
             v = collectionView.dequeueReusableSupplementaryView(ofKind: UICollectionElementKindSectionFooter, withReuseIdentifier: "MMSectionFootView", for: indexPath)as! MMSectionFootView
        }
        return v
    }
    /* sectionHeadView 尺寸*/
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize{
        
        return CGSize(width: UIScreen.main.bounds.width, height: 50)
    }
    
    /* sectionFootView 尺寸*/
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize{
        
        return CGSize(width: UIScreen.main.bounds.width, height: 50)
    }

item Size 代理

 /* item 尺寸*/
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize
    {
        return CGSize(width: UIScreen.main.bounds.width/2, height: 100)
    }

collectionView 方法特性

##水平滑動(dòng)
layout.scrollDirection = .horizontal

錯(cuò)誤


image.png
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末痹兜,一起剝皮案震驚了整個(gè)濱河市岛请,隨后出現(xiàn)的幾起案子蕉鸳,更是在濱河造成了極大的恐慌错览,老刑警劉巖吊宋,帶你破解...
    沈念sama閱讀 206,968評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件窖维,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡绿店,警方通過(guò)查閱死者的電腦和手機(jī)吉懊,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人借嗽,你說(shuō)我怎么就攤上這事怕午。” “怎么了淹魄?”我有些...
    開(kāi)封第一講書(shū)人閱讀 153,220評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵郁惜,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我甲锡,道長(zhǎng)兆蕉,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 55,416評(píng)論 1 279
  • 正文 為了忘掉前任缤沦,我火速辦了婚禮虎韵,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘缸废。我一直安慰自己包蓝,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評(píng)論 5 374
  • 文/花漫 我一把揭開(kāi)白布企量。 她就那樣靜靜地躺著测萎,像睡著了一般。 火紅的嫁衣襯著肌膚如雪届巩。 梳的紋絲不亂的頭發(fā)上硅瞧,一...
    開(kāi)封第一講書(shū)人閱讀 49,144評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音恕汇,去河邊找鬼腕唧。 笑死,一個(gè)胖子當(dāng)著我的面吹牛瘾英,可吹牛的內(nèi)容都是我干的枣接。 我是一名探鬼主播,決...
    沈念sama閱讀 38,432評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼缺谴,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼但惶!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起瓣赂,我...
    開(kāi)封第一講書(shū)人閱讀 37,088評(píng)論 0 261
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤榆骚,失蹤者是張志新(化名)和其女友劉穎片拍,沒(méi)想到半個(gè)月后煌集,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,586評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡捌省,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評(píng)論 2 325
  • 正文 我和宋清朗相戀三年苫纤,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,137評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡卷拘,死狀恐怖喊废,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情栗弟,我是刑警寧澤污筷,帶...
    沈念sama閱讀 33,783評(píng)論 4 324
  • 正文 年R本政府宣布,位于F島的核電站乍赫,受9級(jí)特大地震影響瓣蛀,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜雷厂,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評(píng)論 3 307
  • 文/蒙蒙 一惋增、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧改鲫,春花似錦诈皿、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,333評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至缕题,卻和暖如春措左,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背避除。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 31,559評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工怎披, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人瓶摆。 一個(gè)月前我還...
    沈念sama閱讀 45,595評(píng)論 2 355
  • 正文 我出身青樓凉逛,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親群井。 傳聞我的和親對(duì)象是個(gè)殘疾皇子状飞,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評(píng)論 2 345

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