let play = UISwipeGestureRecognizer(target: self, action: #selector(upSwipe))
play.direction = .up
view.addGestureRecognizer(play)I am working on a WWDC submission and I am trying to make a swipe guesture to get working, the function is an `@objc func` and I have tryed many debugging methods. This is in playgrounds.