我有一个UITableView Controller类,里面是一个String数组。 Table视图有1个单元格原型,其中包含一个带有1个单元原型的UICollectionView。
通过将数组传递到tableview单元格来填充CollectionView,该单元格是UICollectionView Delegate和DataSource。
当我对TableViewController中的数组进行更改并调用self.tableView.reloadData()时,单元格内的CollectionView不会更新。
我该如何解决这个问题?
谢谢
编辑:
TableViewController中的代码:
@IBAction func addToArrayAction(sender: AnyObject) {
self.testArray.append("Ant-Man")
self.tableView.reloadData()
}
var testArray = ["Guardinas", "Iron Man", "Avengers", "Captain America"]
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("collectionContainerCell", forIndexPath: indexPath) as! TableViewCell
cell.testArray = self.testArray
return cell
}
UITableViewCell中的代码:
var testArray: [String]?
override func awakeFromNib() {
super.awakeFromNib()
self.collectionView.delegate = self
self.collectionView.dataSource = self
}
func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let cell = self.collectionView.dequeueReusableCellWithReuseIdentifier("collectionViewCell", forIndexPath: indexPath) as! CollectionViewCell
cell.movieTitleLabel.text = self.testArray![indexPath.item]
cell.movieYearLabel.text = "2016"
return cell
}
答案 0 :(得分:5)
请尝试在阵列中的每次更新时调用reloadData
UICollectionView
。
如果您只使用UITableView
中的一个单元格,那么您可以使用cellForRowAtIndexPath
UITableView
方法重新加载其他方法,您可以在调用reloadData
UITableView
后拨打电话。
答案 1 :(得分:-1)
添加cell.collectionView.reloadData()之后,CollectionView滚动在我的项目中是如此缓慢。如何解决这类问题。