SWIFT:
Getting an instance of UIStoryboard programmatically can be done as follows:
let storyboard = UIStoryboard(name: "Main", bundle: nil)
where:
name => the name of the storyboard without the extension
bundle => the bundle containing the storyboard file and its relate...