Last active
June 19, 2017 00:54
-
-
Save ishabazz/b6cea982173857cdf7f1c90056eae1ae to your computer and use it in GitHub Desktop.
UIStoryboard extension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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