I\'m fairly new to Mac development and am slightly confused by the new \"storyboard\" feature in Xcode 6. What I\'m trying to do is segue from one view controller to another
If you provide a custom segue (subclass of NSStoryboardSegue) you can get the result you are after. There are a few gotchas with this approach though:
presentViewController:animator so you will need to provide an animator objectidentifier property you need to watch out for.As there doesn't seem to be much documentation about this I have made a small demo project with custom segue examples in Swift and Objective-C.

I also have provided some more detail in answer to this question.