I have 2 schemas in my application:
- App_Scheme1
- App_Scheme2
I want to use separate launch screen storyboards for them. Could you please let me know if it is possible?
I have searched regarding this and I found it is possible in the URL scheme but not in the application scheme.
I have created two different launch screen storyboards.
- Launch screen
- Dynamic Launch screen
How can I assign them to the schema?
Any help will be appreciated. Thanking you in advance.
You can duplicate existing app target and set it's launch screen with different launch screen then set your second scheme to run the duplicated target.
The launch storyboard is defined in Info.plist file which is generated per target. If you want to use default way of doing it, then you have to have different targets. If you want a workarounds like scripts which use configs, additional LaunchScreens in or after
didFinishLaunchingWithOptions
then maybe this will be possible but it will be more complex to achieve it.