Hello!
I have an application that uses UILaunchStoryboardName to define the launch screen.
According to UILaunchStoryboardName docs the availability for this property for iOS 9.0 and +
Since the update to iOS 14, my application now shows a black screen instead of the storyboard I have configured for the application. This was working properly on iOS 13.
On my Info.plist file I have the following property defined:
I'm not using UILaunchScreen at all because I still want to be able to use storyboards.
According to the docs, I expect that I should be able to use UILaunchStoryboardName to define a Launch Screen and this should work on iOS 14.
Description
I have an application that uses UILaunchStoryboardName to define the launch screen.
According to UILaunchStoryboardName docs the availability for this property for iOS 9.0 and +
Since the update to iOS 14, my application now shows a black screen instead of the storyboard I have configured for the application. This was working properly on iOS 13.
On my Info.plist file I have the following property defined:
Code Block <key>UILaunchStoryboardName</key><string>SplashScreen</string>
I'm not using UILaunchScreen at all because I still want to be able to use storyboards.
Expected behaviour
According to the docs, I expect that I should be able to use UILaunchStoryboardName to define a Launch Screen and this should work on iOS 14.
Related issues