iOS UICollectionView header吸頂懸停

UITableViewplainstyle趴拧,sectionheader可以自動懸停珠月,footer自動貼底,TableViewHeader可以自動劃出屏幕。而UICollectionView不能設(shè)置header, UICollectionView也沒有plain模式蔫敲。

因?yàn)橛行﹫D片排版不太適合用UITableView饲嗽,那么如何用UICollectionView 做出既包含headersectionHeader又可以懸停的效果呢奈嘿?
image.png

方法一(適合items結(jié)構(gòu)簡單貌虾;也適合header上可以切換tab,tab展示數(shù)據(jù)比較類似,切換tab時只用刷新數(shù)據(jù)源就行)

  • 思想:設(shè)置兩個section裙犹。第一組的sectionfooter來充當(dāng)整個UICollectionViewheader效果劃出尽狠;然后設(shè)置第二組的header,設(shè)置正常的items叶圃,UICollectionViewflowLayoutsectionHeadersPinToVisibleBounds屬性設(shè)置為true則有懸停效果袄膏。
// Set these properties to YES to get headers that pin to the top of the screen and footers that pin to the bottom while scrolling (similar to UITableView).
    @available(iOS 9.0, *)
    open var sectionHeadersPinToVisibleBounds: Bool
  • demo(代碼很簡單,都貼出來了掺冠,方法非常取巧):

import UIKit

class ViewController: UIViewController {
    
    private let itermSpace: CGFloat = 5
    lazy private var flowLayout: UICollectionViewFlowLayout = {
        let flowLayout = UICollectionViewFlowLayout()
        flowLayout.sectionInset = UIEdgeInsets.init(top: itermSpace, left: itermSpace, bottom: itermSpace, right: itermSpace)
        flowLayout.minimumInteritemSpacing = itermSpace
        flowLayout.minimumLineSpacing = itermSpace
        flowLayout.sectionHeadersPinToVisibleBounds = true
        return flowLayout
    }()
    
    lazy private var collectionView: UICollectionView = {
        let colletionView = UICollectionView(frame: CGRect.zero, collectionViewLayout: flowLayout)
        return colletionView
    }()

    override func viewDidLoad() {
        super.viewDidLoad()
        
        let headerView = UIView(frame: CGRect(x: 0, y: 0, width: UIScreen.main.bounds.width, height: 200))
        headerView.backgroundColor = UIColor.green
        
        collectionView.register(TPPAddReviewCell.classForCoder(), forCellWithReuseIdentifier: "TPPAddReviewCell")
        collectionView.register(TPPCollectionReusableViewHeader.classForCoder(), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "TPPCollectionReusableViewHeader")
        collectionView.register(TPPCollectionReusableViewFooter.classForCoder(), forSupplementaryViewOfKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: "TPPCollectionReusableViewFooter")
        collectionView.dataSource = self
        collectionView.delegate = self
        collectionView.frame = view.bounds
        view.addSubview(collectionView)
    }
}

extension ViewController: UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout {
    func numberOfSections(in collectionView: UICollectionView) -> Int {
        return 2
    }

    
    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        if section == 0 {
            return 0
        }
        return 20
    }
    
    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "TPPAddReviewCell", for: indexPath) as! TPPAddReviewCell
        return cell
    }
    
    
    
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
        return CGSize(width: 100, height: 100)
    }
    
    
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
        if section == 1 {
            return CGSize(width: UIScreen.main.bounds.width, height: 50)
        }
        return CGSize.zero
    }
    
    func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForFooterInSection section: Int) -> CGSize {
        if section == 0 {
            return CGSize(width: UIScreen.main.bounds.width, height: 200)
        }
        return CGSize.zero
    }
    
    func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
        if kind == UICollectionView.elementKindSectionHeader {
            let view = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "TPPCollectionReusableViewHeader", for: indexPath) as! TPPCollectionReusableViewHeader
            return view
        } else {
            let view = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "TPPCollectionReusableViewFooter", for: indexPath) as! TPPCollectionReusableViewFooter
            return view
        }
        
    }
}


class TPPCollectionReusableViewHeader: UICollectionReusableView {
    
    public override init(frame: CGRect) {
        super.init(frame: frame)
        configerUI()
    }
    
    public required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
    
    func configerUI() {
        backgroundColor = UIColor.yellow
    }
}


class TPPCollectionReusableViewFooter: UICollectionReusableView {
    
    public override init(frame: CGRect) {
        super.init(frame: frame)
        configerUI()
    }
    
    public required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
    
    func configerUI() {
        backgroundColor = UIColor.orange
    }
}


class TPPAddReviewCell: UICollectionViewCell {
    
    override init(frame: CGRect) {
        super.init(frame: frame)
        configureUI()
        
    }
    
    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }
    
    private func configureUI() {
        contentView.backgroundColor = UIColor.red
    }
    
}

  • 效果:


    collection.gif

方法二
思想:UITableView嵌套UITableView沉馆。在外層UITableView中的其中一個Cell中包裹多個VC,多個VC之間的結(jié)構(gòu)大不相同德崭,需要處理UITableView的手勢沖突問題斥黑,實(shí)現(xiàn)復(fù)雜,但是結(jié)構(gòu)清晰眉厨。類似這種心赶,切換tab,兩邊的結(jié)構(gòu)完全不同缺猛。這種方式比較麻煩缨叫,這里只提供一種思路,demo下次再說荔燎。

5AC662BD1F43A8CD360DB0CE7FE50A89.png

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末耻姥,一起剝皮案震驚了整個濱河市,隨后出現(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ī)與錄音,去河邊找鬼坦辟。 笑死刊侯,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的锉走。 我是一名探鬼主播滨彻,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼挪蹭!你這毒婦竟也來了亭饵?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤梁厉,失蹤者是張志新(化名)和其女友劉穎辜羊,沒想到半個月后,有當(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
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了肉盹。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片昔驱。...
    茶點(diǎn)故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖垮媒,靈堂內(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. 我叫王不留验残,地道東北人。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓巾乳,卻偏偏與公主長得像您没,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子胆绊,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,792評論 2 345

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