2015-09-22 66 views
0

我已添加節頂部:20,左側:10,右側:10和底部:集合視圖中的插圖。一切都很好,但底部空間不會影響到那裏,因爲單元格從底部彼此重疊。底部空間不影響與UICollectionViewCell

任何人都可以幫助我嗎?

+0

什麼是細胞的高度? –

回答

0

你可以試試這個代碼:

- (UIEdgeInsets)collectionView: 
(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout insetForSectionAtIndex:(NSInteger)section { 

    return UIEdgeInsetsMake(20,10,10,10); 
} 
+0

我已經添加了上面的代碼,但它不起作用,似乎我已經添加了那些已經使用xcode尺寸界面,但不起作用。不知道爲什麼。 – Bestir

+0

也許你沒有爲你的collectionview指定一個委託和一個數據源 self.collectionView.dataSource = self; self.collectionView.delegate = self; [self.collectionView registerClass:[yourCell class] forCellWithReuseIdentifier:kCell]; self.collectionViewLayout = self.collectionView.collectionViewLayout; – Erminesoft

+0

我應該在哪裏添加最後添加的代碼? – Bestir