StickyHeadersCollectionView icon indicating copy to clipboard operation
StickyHeadersCollectionView copied to clipboard

Wrong behaviour if section have no items

Open mariohahn opened this issue 8 years ago • 0 comments

to test:

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
    if section == 0 {
        return 0
    }
    return Int(arc4random_uniform(10) + 2)
}

mariohahn avatar Oct 10 '16 10:10 mariohahn