The NSCollectionViewreload extension method doesn't support sections.
Motivation and Context
Would be nice to have sections, just like on iOS :-)
Proposed Solution
Unlike #93 (NSTableView section support) this one should be an almost exact copy of the UICollectionView.reload implementation? AFAIK the NSCollectionView essentially works the same, at least since ~10.12. (The main difference is that NSCollectionView uses VCs instead of plain views as items, but that doesn't matter here).
deleteSections/insertSections etc. are all available.
Checklist
Description
The
NSCollectionView
reload
extension method doesn't support sections.Motivation and Context
Would be nice to have sections, just like on iOS :-)
Proposed Solution
Unlike #93 (NSTableView section support) this one should be an almost exact copy of the
UICollectionView.reload
implementation? AFAIK theNSCollectionView
essentially works the same, at least since ~10.12. (The main difference is that NSCollectionView uses VCs instead of plain views as items, but that doesn't matter here).deleteSections
/insertSections
etc. are all available.