gpt4 book ai didi

cell - xcode View 集合单元格大小错误

转载 作者:行者123 更新时间:2023-12-04 04:54:41 25 4
gpt4 key购买 nike

我有一个尺寸为 w:160 h:146 的自定义收集单元 Nib 。当我填充我的 Collection View 时,所有元素都非常小,比如 20px * 20px。

为什么它会减小我的细胞大小?这是我的代码

-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)IndexPath
{
static NSString *CellIdentifier = @"Cell1";

[collectionView registerNib:[UINib nibWithNibName:@"TjansterCell" bundle:nil] forCellWithReuseIdentifier:@"Cell1"];


TjansterCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:CellIdentifier forIndexPath:IndexPath];

return cell;


}

最佳答案

问题是 Collection View 流布局使用其“itemSize”属性的默认大小。幸运的是,这很容易解决。只需将以下代码添加到您的 Collection View 的委托(delegate)中:

-(CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
return CGSizeMake(<your width>, <your height>);
}

关于cell - xcode View 集合单元格大小错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16925734/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com