我正在尝试使用当前 CollectionViewcell 的 IndexPath 来访问字典中的数据。字典的键是 Int 类型。此 CollectionView 具有“整页”单元格,这意味着每个单元格都占据了我使用水平滚动(启用分页)在单元格之间导航的完整视图区域。
字典是:
var dataFromServer: [Int: [VillageFestival]]?
每个 CollectionViewCell 里面都有一个 TableView,我计划在其中有可变数量的行,具体取决于 [VillageFestival] 中有多少项目
但是,CollectionView cellForItemAt indexPath
该方法的行为会引起一些麻烦,因为打印 indexPath.item 或将其设置为我的导航控制器的标题,会返回奇怪但“可以理解”的结果,因为我认为 dequeueReusableCell 是如何工作的?...
示例:当前索引为 0。当我向右滚动时,当前索引现在为 2。如果我导航到第 6 页然后返回一页,当前索引指示为 3。
为了简化逻辑,我已将字典键从 Date 更改为 String,现在更改为 Int。但问题仍然存在。我正在使用一个pageIndex: Int
正在内部更新的全局变量CollectionView cellForItemAt
override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
pageIndex = indexPath.item
self.navigationController?.navigationBar.topItem?.title = String(pageIndex)
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "collectionViewCell", for: indexPath) as! CollectionViewCell
// CollectionViewCell resize to CollectionView Bounds
cell.tableViewCellOffsets = (UIApplication.shared.statusBarFrame.size.height + (self.navigationController?.navigationBar.frame.height ?? 0.0) , self.tabBarController?.tabBar.frame.height ?? 0)
return cell
}
在 Tableview numberOfRowsInSection 中,我使用 pageIndex 来访问字典值。
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
guard let festivals = dataFromServer?[pageIndex] else {return 0}
return festivals.count
}
使用我当前的代码,该应用程序为某些页面显示 0 行,为其他页面显示 1 行。我的猜测是 collectionView 的 cellForItemAt 在 tableView 的方法之前(也可能在之后?)被调用,这使得使用全局 pageIndex 不可靠......
谢谢!