gpt4 book ai didi

ios - 我可以根据 iOS Swift 的 tableView 部分更改 collectionView 中的单元格数量吗?

转载 作者:行者123 更新时间:2023-11-30 11:25:15 25 4
gpt4 key购买 nike

我有2个数组

var list3:Array< String > = Array < String >()
var list4:Array< String > = Array < String >()

如果tableview部分为0,我需要返回列表3的计数

如果tableview部分是4,我需要返回列表4的计数

我该怎么做?

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
switch(section){
case 0 : return list3.count
case 1 : return list4.count
default : return 0
}
}

它不工作...

最佳答案

在 UITableViewController 的重写函数中,当您创建 UITableViewCell 时,您将从索引路径中获取部分和行,并且您将在单元格内设置 Collection View

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell{
let cell = ...
if(indexPath.row == 3 && indexPath.section == 1){
cell.numberOfCells = 123
}
}

关于ios - 我可以根据 iOS Swift 的 tableView 部分更改 collectionView 中的单元格数量吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50811724/

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