gpt4 book ai didi

ios - 具有 1 个数据源的 tableview 单元格内的 Collectionview

转载 作者:搜寻专家 更新时间:2023-10-31 19:38:16 27 4
gpt4 key购买 nike

我想将 Collection View 放在表格 View 单元格中。每个 tableview 单元格包含 2 个 collectionviewCell。假设我的数据模型中有 8 张图片,我希望 Collection View 看起来像图像。如何做到这一点?

enter image description here

最佳答案

与其在 tableview 中使用 Collection View,不如在方法中使用垂直滚动的 collection view

  #pragma mark ------------Collection View Delegates-----------------
override func numberOfSectionsInCollectionView(collectionView:
UICollectionView!) -> Int {
return 1
}
override func collectionView(collectionView: UICollectionView!,
numberOfItemsInSection section: Int) -> Int {
return 4
}
override func collectionView(collectionView: UICollectionView!,
cellForItemAtIndexPath indexPath: NSIndexPath!) ->
UICollectionViewCell! {

let cell = collectionView.dequeueReusableCellWithReuseIdentifier(reuseIdentifier,
forIndexPath: indexPath) as !MyCollectionViewCell

// Configure the cell
let image = UIImage(named: Images[indexPath.row])
cell.imageView.image = image

return cell
}
func collectionView(collectionView: UICollectionView,
layout collectionViewLayout: UICollectionViewLayout,
sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize {
return CGSizeMake(_collectionViewToAddImages.frame.size.width/2, _collectionViewToAddImages.frame.size.height/2);
}

这样你就会有这样的 View ,只需添加填充,你就会得到结果 enter image description here

关于ios - 具有 1 个数据源的 tableview 单元格内的 Collectionview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36495415/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com