Trying to add a a Supplementary view into my UICollectionView as a header. I\'m having issues getting it to work.
UICollectionView
I use a custom UICollectionViewFlowL
UICollectionViewFlowL
A iOS9 bug, In viewcontroller's dealloc set layer delegate nil.
- (void)dealloc{ if ([[[UIDevice currentDevice] systemVersion] hasPrefix:@"9"]) { self.collectionView.layer.delegate = nil; } }