我有一个尺寸为 w:160 h:146 的自定义收集单元笔尖。当我填充我的集合视图时,所有元素都非常小,比如 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;
}