Move or copy view controller from one storyboard to another

ios, storyboard, uiviewcontroller, xcode

Solution

Yes, it is possible.

- Select controllers you want to copy

- Press Command + C

- Open your second storyboard file

- Press Command + V

Note: "IBOutlets remains as is after copying(Verified on Xcode 6.3.2)."

Problem

I have several `UIViewControllers` in one Storyboard. Now I want to move some `UIViewControllers` to another Storyboard. Is it possible?

Original source

Related problems