我有一个集合视图,当每个单元格被点击时,弹出更大版本的单元格图像,并在再次点击时消失。除此之外,我希望能够在单元格的一角选择一个显示蓝色复选标记(SSCheckMark View)的视图,或者再次点击时显示灰色的复选标记。我目前的代码是:
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "photoCell", for: indexPath) as! PhotoCell
cell.backgroundColor = .clear
cell.imageView.image = UIImage(contentsOfFile: imagesURLArray[indexPath.row].path)
cell.checkmarkView.checkMarkStyle = .GrayedOut
cell.checkmarkView.tag = indexPath.row
cell.checkmarkView.checked = false
let tap = UITapGestureRecognizer(target: self, action: #selector(checkmarkWasTapped(_ :)))
cell.checkmarkView.addGestureRecognizer(tap)
return cell
}
func checkmarkWasTapped(_ sender: SSCheckMark) {
let indexPath = IndexPath(row: sender.tag, section: 1)
if sender.checked == true {
sender.checked = false
} else {
sender.checked = true
}
collectionView.reloadItems(at: [indexPath])
}
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
addZoomedImage(indexPath.row)
addGestureToImage()
addBackGroundView()
view.addSubview(selectedImage)
}
但是当我运行并选择复选标记视图时,我收到错误:
在unrecognized selector sent to instance
的第一行 checkmarkWasTapped()
我可以看到它不喜欢发件人,但我不知道为什么。任何帮助都会很棒。
答案 0 :(得分:1)
POST
UITapGestureRecognizer
' s tap
就是这个动作。 sender
方法定义错误。您可以使用checkmarkWasTapped
获取checkmarView
。试试这个。
sender.view