Collection view drag and drop delay
问题 Is there a way to adjust time which takes for drag to begin on collection view cell? Similar to UILongPressGestureRecognizer minimumPressDuration property. I know we can iterate over all gesture recognizers attached to the view and probably find the one we need. But this approach doesn't feel reliable. 回答1: Since there's no better solution, i still used 'iterate over gesture recognizers' approach. Code is the following: gestureRecognizers?.forEach { (recognizer) in if let longPressRecognizer