Skip to content

Instantly share code, notes, and snippets.

@ishabazz
Last active June 19, 2017 00:54
Show Gist options
  • Save ishabazz/b6cea982173857cdf7f1c90056eae1ae to your computer and use it in GitHub Desktop.
Save ishabazz/b6cea982173857cdf7f1c90056eae1ae to your computer and use it in GitHub Desktop.
UIStoryboard extension
enum StoryName:String{
case main = "Main"
}
extension UIStoryboard{
convenience init(name:StoryName, bundle:Bundle? = nil) {
self.init(name:name.rawValue, bundle: bundle)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment