there is a blank storyboard called @LaunchScreen.storyboard . Can you use the AssetCatalog's called "splash" and stretch it proportioanlly over the storyboard when the app is launched
The user wants me to modify the LaunchScreen.storyboard file to show an image from an Asset Catalog called "splash" and stretch it proportionally over the launch screen when the app is launched.
Looking at the current LaunchScreen.storyboard, it's a basic storyboard with just a view controller and a plain view with system background color.
I need to:
Add an UIImageView to the storyboard
Configure it to use the "splash" asset from the Asset Catalog
Set up constraints to make it stretch proportionally to fill the screen
Set the content mode to aspect fill or aspect fit to maintain proportions
I'll need to modify the storyboard XML to add the image view and constraints.
Let me first check if there's an Asset Catalog in the project to confirm the "splash" asset exists.
Perfect! Found the Splash.imageset in the Asset Catalog. Now I'll modify the LaunchScreen.storyboard to add an image view that displays the splash image proportionally.