我有一个带自定义单元格的UICollectionView。每个自定义单元格都包含一个UITableView。我遇到的问题是表视图返回错误的行数。当我从CustomCell.swift中在numberOfRowsInSection
中打印data.count时,计数不正确。但是当我从CustomCell.swift中的cellForRowAtIndexPath
或ViewController.swift中的cellForItemAtIndexPath
打印数据[indexPath.row] .count时,计数是正确的。我做错了什么?
ViewController.swift
class ViewController: UIViewController, UICollectionViewDataSource, UICollectionViewDelegate {
var collectionView:UICollectionView!
var layout = UICollectionViewFlowLayout()
let kCustomCellIdentifier = "CustomCell"
let data = [[5, 4, 3, 2],[0, 1, 2, 3],[9, 8, 7, 6, 5]]
func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCellWithReuseIdentifier(kCellIdentifier, forIndexPath: indexPath) as! CustomCell
//data[indexPath.row].count returns the correct value
cell.numbers = data[indexPath.row]
return cell
}
}
CustomCell.swift
class CustomCell: UICollectionViewCell, UITableViewDataSource, UITableViewDelegate {
let kCustomTableCell = "CustomTableCell"
var numbers:[Int]!
override init(frame: CGRect) {
super.init(frame: frame)
tableView = UITableView(frame: frame, style: .Plain)
tableView.registerClass(CustomTableCell.self, forCellReuseIdentifier: kCustomTableCell)
tableView.delegate = self
tableView.dataSource = self
contentView.addSubview(tableView)
}
override func prepareForReuse() {
super.prepareForReuse()
tableView.reloadData()
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
//numbers.count returns the wrong value
return numbers.count
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
//numbers.count returns the correct value
let cell = tableView.dequeueReusableCellWithIdentifier(kCustomCell) as! CustomTableCell
return cell
}
数据
data = [[5, 4, 3, 2],[0, 1, 2, 3],[9, 8, 7, 6, 5]]
第一个单元格我希望有4行,第二个单元格我希望有4行,第三个单元格我希望有5行。而是第三个单元格返回4行和第一个单元格中的数据。
答案 0 :(得分:1)
不确定这是否是一个好的解决方案,但它确实有效。
var numbers:[Int]! {
didSet{
tableView.reloadData()
}
}