Storyboards are an exciting feature first introduced in iOS 5, which save time building user interfaces for your apps. Storyboards allow you to prototype and design multiple view controller views within one file, and also let you create transitions between view controllers. Before storyboards, you had to use XIB files (aka NIB files). You could only use one XIB file per view (for example, per UITa

