I need a label above every section in my Collection View. I\'ve tried simply dragging a label into my header space above my prototype cell, but every time I run the app, the
Implement collectionView:viewForSupplementaryElementOfKind:atIndexPath: and supply a dequeued UICollectionElementKindSectionHeader containing your label. If this is a flow layout, be sure also to set the headerReferenceSize or you still won't see anything.