问题描述
我在tableviewcell内部有一个带有mulitselect的collectionview。当我向下滚动时-选定的单元格被取消选择。 CollectionViewDelegate和DataSource包含在单元格中。 TableView仅包含此单元格。我认为,TableView尝试重用单元格时会出现问题。
class CategoryCollectionCell: UITableViewCell {
@IBOutlet weak var collectionView: UICollectionView!
static let identefier = "CategoryCollectionCell"
private var items: [Value] = [] {
didSet {
collectionView.reloadData()
}
}
override func awakeFromNib() {
super.awakeFromNib()
commonInit()
}
private func commonInit() {
collectionView.delegate = self
collectionView.dataSource = self
collectionView.allowsMultipleSelection = true
}
func config(items: [Value]) {
self.items = items
}
}
extension CategoryCollectionCell: UICollectionViewDataSource {
func collectionView(_ collectionView: UICollectionView,numberOfItemsInSection section: Int) -> Int {
items.count
}
func collectionView(_ collectionView: UICollectionView,cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: CategoryCell.identefier,for: indexPath) as! CategoryCell
cell.config(text: items[indexPath.row].name)
cell.layoutIfNeeded()
return cell
}
}
解决方法
在func collectionView(_ collectionView: UICollectionView,cellForItemAt indexPath: IndexPath) -> UICollectionViewCell
中,您必须将单元格设置为选中状态(如果以前已设置过)。
iOS会在重用之前重置每个单元。您必须检查数据,是否应该选择显示前的每个单元格。
您可以在自定义UICollectionViewCell类中设置自定义方法,也可以仅将其设置为使用内置的单元格
cell.isSelected = true