Selector to get indexPath UICollectionView Swift 3.0

后端 未结 5 1532
北恋
北恋 2020-12-21 16:02

I\'m trying to get indexPath on the cell when it is tapped twice. I\'m passing arguments in Selector like this but it is giving error. What is the

5条回答
  •  爱一瞬间的悲伤
    2020-12-21 17:03

    First of all you are adding tapGesture to collectionView instead of subOptioncell.

    It should be:

    subOptioncell.addGestureRecognizer(tap)
    

    Instead of:

    collectionView.addGestureRecognizer(tap)
    

    You cannot pass other instance with selector of UIGestureRecognizer, the only instance you can pass is UI(Tap)GestureRecognizer. If you want the indexPath of that cell you can try like this. First of all set your selector of TapGesture like this.

    let tap =  UITapGestureRecognizer(target: self, action: #selector(doubleTapped(sender:)))
    

    Now method should be like:

    func doubleTapped(sender: UITapGestureRecognizer) {
        if let cell = sender.view as? SubOptionsCollectionViewCell, let indexPath = self.collectionView.indexPath(for: cell) {
             print(indexPath)
        }       
    }
    

    Edit: If you want to show/hide image on cell double tap then you need to handle it using indexPath of cell, for that first declare one instance of IndexPath and use it inside cellForItemAt indexPath.

    var selectedIndexPaths = IndexPath()
    
    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        //Your code 
        //Now add below code to handle show/hide image
        cell.subOptionSelected.isHidden = self.selectedIndexPaths != indexPath
        return cell
    }
    

    Now on doubleTapped action of UITapGestureRecognizer set the selectedIndexPath.

    func doubleTapped(sender: UITapGestureRecognizer) {
        if let cell = sender.view as? SubOptionsCollectionViewCell, let indexPath = self.collectionView.indexPath(for: cell) {
             if self.selectedIndexPaths == indexPath {
                 cell.subOptionSelected.isHidden = true
                 self.selectedIndexPaths = IndexPath()
             }
             else {
                 cell.subOptionSelected.isHidden = false
                 self.selectedIndexPaths = indexPath
             }           
        }       
    }
    

提交回复
热议问题