我正在尝试制作自定义颜色选择器。左侧的颜色是所选颜色,其他颜色是其他选项。但是,当我reloadData()时,collectionView边缘上的一个单元格将在此新单元格下方具有上一个单元格。
我尝试制作一个自定义collectionViewCell,然后将视图添加到默认的UICollectionViewCell。 我试图通过对视图应用阴影影响来诊断问题,这就是我知道单元格彼此堆叠的方式。 以前,我通过在情节提要中制作原型单元来对collectionView进行编码,但是对于我想要的功能,我无法做到这一点。
这是cellForItemAtIndexPath的代码以及重新加载收集视图时的代码。
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = self.dequeueReusableCell(withReuseIdentifier: "colorCell", for: indexPath)
var color = UIColor.white
if colors.count == 0{
color = UIColor(red: CGFloat(mainManager.colors[indexPath.row][0] ), green: CGFloat(mainManager.colors[indexPath.row][1] ), blue: CGFloat(mainManager.colors[indexPath.row][2] ), alpha: 1.0)
}
else{
color = UIColor(red: CGFloat((colors[indexPath.row][0] ) ), green: CGFloat((colors[indexPath.row][1] ) ), blue: CGFloat((colors[indexPath.row][2] ) ), alpha: 1.0)
}
if indexPath.row == 0{
let cellView = UIView()
cell.addSubview(cellView)
cellView.translatesAutoresizingMaskIntoConstraints = false
cellView.centerYAnchor.constraint(equalTo: cell.centerYAnchor).isActive = true
cellView.centerXAnchor.constraint(equalTo: cell.centerXAnchor).isActive = true
cellView.widthAnchor.constraint(equalTo: cell.widthAnchor, multiplier: 0.8).isActive = true
cellView.heightAnchor.constraint(equalTo: cell.heightAnchor, multiplier: 0.8).isActive = true
cellView.roundEdgesAndShadow()
cellView.backgroundColor = color
}
else{
let centerView = UIView()
cell.addSubview(centerView)
centerView.translatesAutoresizingMaskIntoConstraints = false
centerView.centerXAnchor.constraint(equalTo: cell.centerXAnchor).isActive = true
centerView.centerYAnchor.constraint(equalTo: cell.centerYAnchor).isActive = true
centerView.widthAnchor.constraint(equalTo: cell.widthAnchor, multiplier: 0.4).isActive = true
centerView.heightAnchor.constraint(equalTo: cell.heightAnchor, multiplier: 0.4).isActive = true
centerView.roundEdgesAndShadow()
centerView.backgroundColor = color
}
return cell
}
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
if colors.count == 0{
colors = mainManager.colors.sorted(by: { (a, b) -> Bool in
if a == mainManager.colors[indexPath.row]{
return true
}
else{
return false
}
})
}
else{
colors = mainManager.colors.sorted(by: { (a, b) -> Bool in
if a == self.colors[indexPath.row] {
return true
}
else{
return false
}
})
}
self.reloadData()
}
答案 0 :(得分:0)
由于您正在动态地向单元格添加视图,因此在重复使用的情况下,它们会多次添加到同一单元格中。在集合视图单元格的 prepareForReuse 中,删除其所有子视图。