How to add tap gesture to UICollectionView , while maintaining cell selection?

前端 未结 2 1180
一个人的身影
一个人的身影 2021-01-07 17:56

Task

Add a single tap gesture to UICollectionView, do not get in the way of cell selection.

I want some other taps on the no-cell part of the

2条回答
  •  自闭症患者
    2021-01-07 18:50

    Whenever you want to add a gesture recognizer, but not steal the touches from the target view, you should set UIGestureRecognizer.cancelsTouchesInView for your gestureRecognizer instance to false.

提交回复
热议问题