Заголовок в разделе CollectionView - PullRequest
0 голосов
/ 26 сентября 2018

У меня есть CollectionView и я хочу поместить заголовок в разделы,

Как можно разместить заголовок в CollectionView?

Спасибо

1 Ответ

0 голосов
/ 26 сентября 2018

Вы должны создать его заголовок

- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPathUICollectionReusableView *reusableview = nil;

if (kind == UICollectionElementKindSectionHeader) {
    RecipeCollectionHeaderView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"HeaderView" forIndexPath:indexPath];
    NSString *title = [[NSString alloc]initWithFormat:@"Recipe Group #%i", indexPath.section + 1];
    headerView.title.text = title;
    UIImage *headerImage = [UIImage imageNamed:@"header_banner.png"];
    headerView.backgroundImage.image = headerImage;

    reusableview = headerView;
}

if (kind == UICollectionElementKindSectionFooter) {
    UICollectionReusableView *footerview = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionFooter withReuseIdentifier:@"FooterView" forIndexPath:indexPath];

    reusableview = footerview;}
    return reusableview;}

Проверьте это для полной информации.https://www.appcoda.com/supplementary-view-uicollectionview-flow-layout/

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...