Skip to content

Instantly share code, notes, and snippets.

@MickaelCruzDB
Created June 8, 2015 15:52
Show Gist options
  • Save MickaelCruzDB/bb8775d314fae1962f28 to your computer and use it in GitHub Desktop.
Save MickaelCruzDB/bb8775d314fae1962f28 to your computer and use it in GitHub Desktop.
@IBOutlet var PanDown: NSPanGestureRecognizer!
@IBAction func PanDownAction(sender: NSPanGestureRecognizer) {
if sender.state == NSGestureRecognizerState.Began {
let vc = storyboard?.instantiateControllerWithIdentifier("C") as! NSViewController
showViewControllerDown(vc)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment