Skip to content

Instantly share code, notes, and snippets.

View megakode's full-sized avatar

Peter Boné megakode

View GitHub Profile
@megakode
megakode / StickyHeadersCollectionViewFlowLayout.m
Last active September 20, 2022 10:06 — forked from randomsequence/StickyHeadersCollectionViewFlowLayout.m
A subclass of UICollectionViewFlowLayout which has UITableView style sticky headers.
// StickyHeadersCollectionViewFlowLayout
//
// A subclass of UICollectionViewFlowLayout which has UITableView style sticky headers.
//
// This code is based on Evadne Wu's code^1, with the following changes:
//
// * Fixes a crash for sections with zero items
// * Adds support for UIScrollView's contentInset
// * Adds support for UICollectionViewFlowLayout's sectionInset
//