Home > Enterprise >  Can't see launchscreen.storyboard in Xcode13
Can't see launchscreen.storyboard in Xcode13

Time:12-15

I've been searching for an hour and can't find the answer.

I can't seem to "activate" see the launchscreen.storyboard option in my Xcode13 project.

I attach a screenshot of what I'm seeing.

Xcode13 not Showing launchscreen.storyboard

CodePudding user response:

You are right, you are not able to see LaunchScreen.storyboard in your XCode13 project. It's due to following reason...

  1. You might selected SwiftUI option for your development: Here if it's correct then please let me update you:

SwiftUI came with lot's of surprising updates for iOS eco-system applications. And this is one of the update from SwiftUI.

Now-onwards, we not need to deal with storyboards anymore. Yes absolutely correct. Now just two line of .plist file creates Storyboard for us. Please have a look how you can achieve it.

Apple has provided a new Key in the info.plist to help you create a basic LaunchScreen.

Please go though following examples :

https://www.avanderlee.com/xcode/launch-screen/

https://danielbernal.co/creating-a-launch-screen-with-swift-ui/

That's it. How cool is it? Hope you now understood it :-)

CodePudding user response:

You have elected to create a SwiftUI project. It doesn't use storyboards.

  • Related