swift – 如何以编程方式设置UICollectionViewCell Width和Height

我正在尝试实现CollectionView。
当我使用Autolayout时,我的细胞不会改变大小,而是改变它们的对齐方式。

现在我宁愿将其大小更改为例如

//var size = CGSize(width: self.view.frame.width/10,height: self.view.frame.width/10)

我尝试在我的CellForItemAtIndexPath中进行设置

collectionCell.size = size

它虽然没有用。

有没有办法实现这个目标?

编辑:

似乎答案只会改变我的CollectionView宽度和高度本身。约束中是否存在冲突?有什么想法吗?

使用此方法设置自定义单元格高度宽度。

确保添加此协议

UICollectionViewDelegate

UICollectionViewDataSource

UICollectionViewDelegateFlowLayout

Objective-c

@interface YourViewController : UIViewController<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeforItemAtIndexPath:(NSIndexPath *)indexPath
{
    return CGSizeMake(CGRectGetWidth(collectionView.frame),(CGRectGetHeight(collectionView.frame)));
}

Swift 4

extension YourViewController: UICollectionViewDelegate,UICollectionViewDelegateFlowLayout {

    func collectionView(_ collectionView: UICollectionView,layout collectionViewLayout: UICollectionViewLayout,sizeforItemAt indexPath: IndexPath) -> CGSize {
         return CGSize(width: screenWidth,height: screenWidth)
    }

}

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...