我的每一行都有一个,如下图所示UITableView
。UICollectionView
来源:https ://ashfurrow.com/blog/putting-a-uicollectionview-in-a-uitableviewcell-in-swift/
我的应用程序的目的是在每个表格视图行中显示一种语言的字符集。每个字符都包含在相应行内的集合视图的集合视图单元格中。
我遇到的问题是每个 tableview 行都显示英文字符集。
这是因为每个集合视图只有一个部分,因此每个集合视图都使用相同indexPath.section
的零值。
我需要做的是获取集合视图所在的表格视图单元格的部分值,并以某种方式将其传递给
func collectionView(_ collectionView: UICollectionView,
cellForItemAt indexPath: IndexPath) -> UICollectionViewCell
我已经尝试了几件事,但我找不到从其中的 collectionview 访问 tableview 部分值的方法。
我的代码有点乱,但通常重要的部分是
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "HorizontalSlideCell", for: indexPath)
return cell
}
...
func collectionView(_ collectionView: UICollectionView,
cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "InnerCollectionViewCell",
for: indexPath as IndexPath)
//format inner collectionview cells
//indexPath.section is the collectionview section index but needs to be its parent tableview section's index. How do I get it?
cellCharLabel?.text = Languages.sharedInstance.alphabets[indexPath.section].set[indexPath.row].char
cellCharLabel?.textAlignment = .center
cellCharLabel?.font = UIFont(name: "Helvetica", size: 40)
cell.contentView.addSubview(cellCharLabel!)
return cell
}