gpt4 book ai didi

ios - ViewController 中的多个 UICollectionViews |不会调用一个 CollectionViews 委托(delegate)方法

转载 作者:行者123 更新时间:2023-11-28 23:41:01 26 4
gpt4 key购买 nike

所以我在 Storyboard 的 UIViewController 中有两个 UICollectionViews,并且都通过委托(delegate)和数据源链接到我的 ViewController。所有关联的 UICollectionView 委托(delegate)方法都已实现,并且对 UICollectionViews 的检查也已实现。但令人沮丧的是,一个 UICollectionView 得到满足而另一个被完全忽略。我在所有可用的方面都摸不着头脑,但这有点让我更接近边缘,请帮忙。

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
if collectionView == self.variantsCollectionView {
// let count = (item?.variant_groups?.count)!
return 1
} else {
return 2//(item?.extra_groups?.count)!
}
}

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell{

if collectionView == self.variantsCollectionView {
//IT DOESNT EVEN COME HERE AT ALL
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell_variant", for: indexPath)
return cell

} else {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath)
//HERE IT COMES ALWAYS FOR THE NUMBER OF CELLS

return cell
}

}

而 UICollectionViews 是这样连接的: enter image description here

和: enter image description here

请帮忙。非常感谢

最佳答案

通过评论,TS 通过以下步骤找到了解决方案:

  1. 确保两个 Collection View 都具有非零数据源(和委托(delegate))。
  2. 检查是否为两个 Collection View 执行了数据源方法。
  3. 检查两个 Collection View 的单元格大小是否有效。

在检查stack view中每个collection view的高度后,终于找到了问题。

basically CollectionView has a specific height whereas VariantCollectionView didnt, and both were in a stackView. When first was created in view it took up the entire size where as the other one kind of actually disappeared. Hence the issue.

关于ios - ViewController 中的多个 UICollectionViews |不会调用一个 CollectionViews 委托(delegate)方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53447698/

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