+1 for potential opportunities to improve Xcode. Now you cannot hide these views (not what I know). But I would suggest you
- Hide debug areas you don't need.
- Hide the outline of a document while working with segues.
Why?
I think that whenever you make changes, the system does not need to redraw these unwanted views and the long outline of the document. It will probably be less laggy (I donβt think there is such a word)!
Work
Divide your segue into different meta segments, and then you can call these segues from your main segue. Thus, you do not need to install each connection in one file, but you condense it!
And here we go for the documentation! Now you can get the bulletin board from a different file, and then easily start with the UIViewController. Then you can simply use the old ways to iterate between different ViewControllers.
Apple Documentation for UIStoryboard
Demo application.
To achieve this, I made a quick demo application that will help any future visitors.
https://github.com/Krutarth/LargeStoryboardManagement
Visually something like this,
source share