是否可靠地使用UICollectionView indexPath访问字典键



我正在尝试使用当前CollectionViewcell的IndexPath来访问字典中的数据。字典的键是Int类型的。此CollectionView具有"全页"单元格,这意味着每个单元格都占据了我使用水平滚动(启用分页)在单元格之间导航的全视图区域。

字典是:

var dataFromServer: [Int: [VillageFestival]]?

每个CollectionViewCell内部都有一个TableView,我计划在其中有可变数量的行,这取决于[VillageFestival]中有多少项目

然而,在CollectionView cellForItemAt indexPath中,该方法的行为造成了一些麻烦,因为打印indexPath.item或将其设置为我的navigationController的标题,会返回奇怪但"可以理解"的结果,因为我认为dequeueReusableCell是如何工作的?。。。

示例:当前索引为0。当我向右滚动时,当前索引现在是2。如果我导航到第6页,然后返回一页,则当前索引指示为3。

为了简化逻辑,我把字典键从Date改为String,现在又改为Int。。但问题依然存在。我正在使用CollectionView cellForItemAt中正在更新的全局pageIndex: Int

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变得不可靠。。。

谢谢!

试试这个游乐场,它可能会对你有所帮助:

import UIKit
import PlaygroundSupport
class Cell: UICollectionViewCell, UITableViewDataSource {
var data: [Int]! = [] {
didSet {
tableView.reloadData()
}
}
private let tableView: UITableView
override init(frame: CGRect) {
tableView = UITableView(frame: .zero, style: .plain)
super.init(frame: frame)
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "Cell")
tableView.dataSource = self
tableView.translatesAutoresizingMaskIntoConstraints = false
contentView.addSubview(tableView)
NSLayoutConstraint.activate([
tableView.leadingAnchor.constraint(equalTo: contentView.leadingAnchor),
tableView.trailingAnchor.constraint(equalTo: contentView.trailingAnchor),
tableView.topAnchor.constraint(equalTo: contentView.topAnchor),
tableView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor)
])
}
required init?(coder aDecoder: NSCoder) {
fatalError()
}
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return data.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
cell.textLabel?.text = String(data[indexPath.item])
return cell
}
}
class VC: UICollectionViewController {
let data = [
0: [1, 2, 3, 4, 5],
1: [6, 4],
2: [5, 5, 5, 5, 6],
3: [9, 9, 8, 4, 5, 5, 5]
]
override init(collectionViewLayout layout: UICollectionViewLayout) {
super.init(collectionViewLayout: layout)
collectionView.isPagingEnabled = true
collectionView.register(Cell.self, forCellWithReuseIdentifier: "Cell")
}
required init?(coder aDecoder: NSCoder) {
fatalError()
}
override func numberOfSections(in collectionView: UICollectionView) -> Int {
return 1
}
override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return data.count
}
override func viewDidLayoutSubviews() {
(collectionViewLayout as? UICollectionViewFlowLayout)?.itemSize = collectionView.bounds.size
}
override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as! Cell
cell.data = data[indexPath.item]
return cell
}
}
let layout = UICollectionViewFlowLayout()
layout.scrollDirection = .horizontal
PlaygroundPage.current.liveView = VC(collectionViewLayout: layout)

相关内容

  • 没有找到相关文章