func respondToSwipeGesture(gestureReconizer: UISwipeGestureRecognizer) { self.performSegueWithIdentifier("SegueFromFirstScreenToSecond", sender: nil) }
Here is the method you will need to implement if you have already created segue and named it "SegueFromFirstScreenToSecond". If you havenβt done a shogu, donβt worry! It's as simple as drawing from the first responder of the storyboard view to the next screen, and then setting the identifier to "SegueFromFirstScreenToSecond".
Good luck
source share