扫码关注官方订阅号
是否一定要自定义layout?
O(∩_∩)O 你把轮播图那个View
[self.collectionView registerClass:[lunboView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:findCollectionViewSectionHeaderIdentifier];
其中lunboView继承与UICollectionReusableView
- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath { lunboView *headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:findCollectionViewSectionHeaderIdentifier forIndexPath:indexPath]; }
你把你的轮播View加到新建的那个View中就行了
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
O(∩_∩)O 你把轮播图那个View
其中lunboView继承与UICollectionReusableView
你把你的轮播View加到新建的那个View中就行了