22

GitHub - bernikovich/StickyHeaderFlowLayout: Sticky headers for UICollectionView...

 5 years ago
source link: https://github.com/bernikovich/StickyHeaderFlowLayout
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

README.md

StickyHeaderFlowLayout

StickyHeaderFlowLayout

Sticky headers for UICollectionView written in pure Swift


Based on CSStickyHeaderFlowLayout. StickyHeaderFlowLayout makes it easy to create sticky headers in UICollectionView.

Integration

CocoaPods

You can use CocoaPods to install StickyHeaderFlowLayout by adding it to your Podfile:

platform :ios, '9.0'

target 'MyApp' do
    pod 'StickyHeaderFlowLayout'
end

Manually

To use this library in your project manually you may:

Just drag StickyHeaderFlowLayout.swift and StickyHeaderFlowLayoutAttributes.swift to the project tree

Usage

Sample project

Repository contains small sample project which shows basic integration.

Basic idea

  1. Create layout and collection view
let layout = StickyHeaderFlowLayout()
let collectionView = UICollectionView(frame: .zero, collectionViewLayout: layout)
  1. Setup sticky header
collectionView.register(CollectionParallaxHeader.self, forSupplementaryViewOfKind: StickyHeaderFlowLayout.parallaxHeaderIdentifier, withReuseIdentifier: "parallaxHeader")
layout.parallaxHeaderReferenceSize = CGSize(width: view.frame.size.width, height: 200)
layout.parallaxHeaderMinimumReferenceSize = CGSize(width: view.frame.size.width, height: 160)
  1. Return correct view in viewForSupplementaryElementOfKind function
override func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
     if kind == StickyHeaderFlowLayout.parallaxHeaderIdentifier {
         return collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "parallaxHeader", for: indexPath)
     }
     
     // Other views.
     ...
}

License

StickyHeaderFlowLayout is released under the MIT license. See LICENSE for details.


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK