我正在尝试向集合视图添加标头。我正在使用水平滚动的自定义布局,它用于查看朋友的头像图像列表。我可以让标题出现,但它不会出列。一旦标题视图离开屏幕,它就会消失。任何人都可以弄清楚这是为什么?
谢谢!
Collection View数据源:
- (UICollectionReusableView *)collectionView:(SWAvatarViewerCollectionView *)collectionView
viewForSupplementaryElementOfKind:(NSString *)kind
atIndexPath:(NSIndexPath *)indexPath
{
if (self.showAddAvatarHeaderView && [kind isEqualToString:UICollectionElementKindSectionHeader]) {
return [collectionView dequeueAddAvatarViewHeaderForIndexPath:indexPath];
}
return nil;
}
- (CGSize)collectionView:(UICollectionView *)collectionView
layout:(SWAvatarViewerCollectionViewFlowLayout *)collectionViewLayout referenceSizeForHeaderInSection:(NSInteger)section
{
if (!self.showAddAvatarHeaderView) {
return CGSizeZero;
}
return CGSizeMake(kSWAvatarViewerAddAvatarHeaderViewWidth, CGRectGetHeight(collectionView.bounds));
}
头像集合视图:
- (SWAvatarViewerAddAvatarHeaderView *)dequeueAddAvatarViewHeaderForIndexPath:(NSIndexPath *)indexPath {
SWAvatarViewerAddAvatarHeaderView *headerView = [super dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader
withReuseIdentifier:[SWAvatarViewerAddAvatarHeaderView headerReuseIdentifier]
forIndexPath:indexPath];
headerView.delegate = self;
return headerView;
}
Nib文件注册:
[self registerNib:[SWAvatarViewerAddAvatarHeaderView nib]
forSupplementaryViewOfKind:UICollectionElementKindSectionHeader
withReuseIdentifier:[SWAvatarViewerAddAvatarHeaderView headerReuseIdentifier]];
布局:
#pragma mark - Initialization
- (void)configureFlowLayout {
self.scrollDirection = UICollectionViewScrollDirectionHorizontal;
// Padding for cells is taken into account in the cell's layout. Remove all
// padding between cells
self.sectionInset = UIEdgeInsetsMake(0, 00.0f, 0, 00.0f);
self.minimumLineSpacing = 0.0f;
self.minimumInteritemSpacing = CGFLOAT_MAX;
_cellBottomLabelFont = [UIFont systemFontOfSize:12.0];
CGSize defaultAvatarSize = CGSizeMake(44.0f, 44.0f);
_avatarViewSize = defaultAvatarSize;
_springinessEnabled = YES;
_springResistanceFactor = 1000;
}
答案 0 :(得分:1)
您显然使用的是我从未听说过的第三方布局。在与您讨论之后,我的感觉是我的第一个评论可能是正确的:布局本身可能有问题。
在集合视图中,单元格的布局属性(位置,大小,变换,alpha等)是布局的责任。因此,如果某些东西仅仅因为它从屏幕滚动然后重新开启而消失,那么听起来布局本身并没有正确地完成其工作。
答案 1 :(得分:1)
快速googleing没有公布SWAvatarViewerCollectionViewFlowLayout。如果您有源代码,可以查看布局代码,应该有一个名为layoutAttributesForElementsInRect:
的方法。
集合视图一旦离开屏幕就会使项目出列,这是借助上述方法确定的(布局属性包含视图中心和维度)。如果该方法总是返回标题的布局属性,则它不会出列。
但是,如果您无法访问代码(如静态库),那么您可能无法做很多事情。
答案 2 :(得分:1)
只需将此方法解决所有问题
- (UIEdgeInsets)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section
{
return UIEdgeInsetsMake(-50, 10, 10, 10); //asuming
//UIEdgeInsetsMake(<#CGFloat top#>, <#CGFloat left#>, <#CGFloat bottom#>, <#CGFloat right#>)
}
享受。