Created
February 23, 2020 08:50
-
-
Save stleamist/81eb7fe6174a55db47cfad99b4c5cdfc to your computer and use it in GitHub Desktop.
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
import UIKit | |
extension UIStoryboard { | |
static var launchScreen: UIStoryboard? { | |
guard let launchStoryboardName = Bundle.main.object(forInfoDictionaryKey: "UILaunchStoryboardName") as? String else { | |
return nil | |
} | |
return UIStoryboard(name: launchStoryboardName, bundle: .main) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment