Challenge - 5 Problems
Launch Screen & Icon Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
❓ ui_behavior
intermediate2:00remaining
What happens if the launch screen storyboard is missing?
In an iOS app, if the launch screen storyboard file is not set or missing, what will the user see when the app starts?
Attempts:
2 left
💡 Hint
Think about the default background color shown by iOS when no launch screen is provided.
✗ Incorrect
If the launch screen storyboard is missing, iOS shows a white screen by default while the app loads. It does not crash or show the main interface immediately.
🧠 Conceptual
intermediate2:00remaining
Why use an asset catalog for app icons?
Why is it recommended to use an asset catalog to manage app icons in an iOS project?
Attempts:
2 left
💡 Hint
Think about how Xcode handles multiple icon sizes for different devices.
✗ Incorrect
Asset catalogs help organize all icon sizes in one place and Xcode uses them to provide the correct icon for each device automatically.
📝 Syntax
advanced2:00remaining
Which Info.plist key sets the launch screen storyboard?
In the Info.plist file, which key correctly specifies the launch screen storyboard file name?
Attempts:
2 left
💡 Hint
Check the official Apple documentation for the exact key name.
✗ Incorrect
The correct key to specify the launch screen storyboard in Info.plist is "UILaunchStoryboardName".
❓ lifecycle
advanced2:00remaining
When is the launch screen displayed during app startup?
At what point during the iOS app startup lifecycle is the launch screen shown to the user?
Attempts:
2 left
💡 Hint
Think about what the launch screen is meant to mask.
✗ Incorrect
The launch screen is displayed while the app is loading and before the main interface is ready, providing a smooth transition.
🔧 Debug
expert3:00remaining
Why does the app icon not update after adding new images?
You added new app icon images to the asset catalog and set them correctly, but the app icon on the device still shows the old icon. What is the most likely cause?
Attempts:
2 left
💡 Hint
Think about how iOS caches app icons on devices.
✗ Incorrect
iOS caches app icons, so after updating icons, deleting and reinstalling the app clears the cache and shows the new icon.