加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

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

发布时间:2020-12-14 05:49:15 所属栏目:百科 来源:网络整理
导读:我正在尝试实现CollectionView。 当我使用Autolayout时,我的细胞不会改变大小,而是改变它们的对齐方式。 现在我宁愿将其大小更改为例如 //var size = CGSize(width: self.view.frame.width/10,height: self.view.frame.width/10) 我尝试在我的CellForItemA
我正在尝试实现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)
    }

}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读