我有一个以编程方式创建的UICollectionView
。创建集合视图后,我想根据它必须保存的单元格数动态定义集合视图高度。我不想启用滚动集合视图本身,而是将此集合视图作为子视图添加到包含在垂直UIScrollView
内的视图中。
例如,如果UICollectionView
有10 UICollectionViewCells
。它可能有200.0f的高度,但如果它有20个单元格,它的高度可能为300.0f,依此类推。
我试图通过遵循Apple文档here来覆盖collectionViewContentSize
方法来实现此目的。
虽然此方法在调用时返回有效的CGSize
,但在实例化集合视图时,其frame
始终设置为零。
这是我到目前为止所做的:
//subclass UICollectionViewFlowLayout
@interface LabelLayout : UICollectionViewFlowLayout
@property (nonatomic, assign) NSInteger cellCount;
@property (nonatomic) UIEdgeInsets sectionInset;
@property (nonatomic) CGSize itemSize;
@property (nonatomic) CGFloat minimumLineSpacing;
@property (nonatomic) CGFloat minimumInteritemSpacing;
@end
- (id)init
{
self = [super init];
if (self) {
[self setup];
}
return self;
}
-(void)prepareLayout
{
[super prepareLayout];
_cellCount = [[self collectionView] numberOfItemsInSection:0];
}
- (void)setup
{
self.sectionInset = UIEdgeInsetsMake(10.0f, 0.0f, 10.0f, 0.0f);
self.itemSize = CGSizeMake(245.0f, 45.0f);
self.minimumLineSpacing = 10.0f;
self.minimumInteritemSpacing = 20.0f;
}
- (CGSize)collectionViewContentSize
{
CGFloat collectionViewWidth = 550;
CGFloat topMargin = 10;
CGFloat bottomMargin = 10;
CGFloat collectionViewHeight = (self.cellCount * (self.itemSize.height +
self.minimumLineSpacing*2)) + topMargin + bottomMargin;
//THIS RETURNS A VALID, REASONABLE SIZE, but the collection view frame never gets set with it!
return CGSizeMake(collectionViewWidth, collectionViewHeight);
}
//create collectionView in viewController
- (void)viewDidLoad
{
[super viewDidLoad];
[self makeLabels]; //determines the number of cells
LabelLayout *layout = [[LabelLayout alloc]init];
self.collectionView = [[UICollectionView alloc]initWithFrame:CGRectZero collectionViewLayout:layout];
self.collectionView.backgroundColor = [UIColor redColor];
self.collectionView.dataSource = self;
self.collectionView.delegate = self;
[self.collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:cellIdentifier];
[self.collectionView reloadData];
[self.view addSubview:self.collectionView];
}
此外,当我为UIcollectionView
明确定义静态框架时,它会按预期创建,因此我知道我唯一的问题是使用collectionViewContentSize
方法。
所以我的问题是,如何动态设置UICollectionView
的高度?
答案 0 :(得分:8)
集合视图 是滚动视图,因此您的-collectionViewContentSize
方法正在确定内容的大小,而不是整体视图的大小。您需要设置集合视图的bounds
或frame
属性以设置集合视图本身的大小。
您可能还想将scrollEnabled
属性设置为NO
。
答案 1 :(得分:1)
使用sizeForItemAtIndexPath:
方法。
在斯威夫特:
func collectionView(_ collectionView: UICollectionView,
layout collectionViewLayout: UICollectionViewLayout,
sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize{
return CGSizeMake(250, 150);
}
在Objective-C中:
-(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath {
return CGSizeMake(250, 150);
}