Skip to content

Instantly share code, notes, and snippets.

@stleamist
Created February 23, 2020 08:50
Show Gist options
  • Save stleamist/81eb7fe6174a55db47cfad99b4c5cdfc to your computer and use it in GitHub Desktop.
Save stleamist/81eb7fe6174a55db47cfad99b4c5cdfc to your computer and use it in GitHub Desktop.
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