サイズが 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;
}