I have a UICollectionView with a custom UICollectionViewLayout and want to add multiple headers per section to display the different hours of a day. Something similar to a week view that has the hours on the left side vertically but on the top and horizontally for my case.
The cells display well but the content is weird, it looks like the cells are reused and only 1 of the 5 that are on screen have a content. Other 4 headers have only background color with no content into.
When i scroll, there is some glitch and update only one cell (sometimes 2) at one time and the content can be switched or misplaced by one row.
Here is the code i use in controller, viewDidLoad
[self.epgCollectionView registerClass:[HeaderTimeReusableView class] forSupplementaryViewOfKind:EpgKindTimeRowHeader withReuseIdentifier:HeaderTimeReuseIdentifier];
same controller more below:
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath{
UICollectionReusableView *view;
if (kind == EpgKindTimeRowHeader){
HeaderTimeReusableView *timeRowHeader = [collectionView dequeueReusableSupplementaryViewOfKind:kind withReuseIdentifier:HeaderTimeReuseIdentifier forIndexPath:indexPath];
timeRowHeader.title.text = [NSString stringWithFormat:@"s%lir%li", (long)indexPath.section, (long)indexPath.row];
view = timeRowHeader;
}
return view;
}
I suppose my custom UICollectionViewLayout good since i can see the multiple header on the place i want.
My question are:
- Is it possible to have multiple headers per section ?
- How to avoid the reuse / recycle effect for these headers ?
- The UICollectionViewCells use the dequeue too but we can have multiple cells per section, so why does it not work for headers/UICollectionReusableView ?
As always, it's when i post a question that i find the answer...
This is the good code for my reusable view:
}
I had previoulsy allocated the label frame like this:
And for some reason, the frame value is not what i have expected. With the hard coded one, it's working fine.