Building Launch Screens — iOS

This guide outlines how to customize a storyboard-based document for displaying a launch screen when an iOS app starts.

Xcode Configuration

As the foundation for this guide, please use our project template which contains the basic required files.

  1. Download the project template (launchimage-master.zip) from our GitHub repository and unzip it.

  2. Double click on the LaunchImage.xcodeproj file to launch Xcode.

Xcode is a powerful and comprehensive development tool which may seem overwhelming. Fortunately, our project template considerably streamlines the configuration process. Assuming you've downloaded and opened the template as outlined above, simply follow these steps:

  1. In Xcode, within the left-side Navigator column, expand the LaunchImageLaunchImage folder tree:

If the Navigator is not visible, reveal it via ViewNavigators Show Navigator (⌘-0).

  1. In the Navigator folder tree, select the Assets.xcassets entry:
  1. In your desired image editing application, create three images. You'll need a "base" version plus one version doubled in size and another tripled in size. These don't need to adhere to specific pixel sizes since they will be scaled to fit the UIImageView while maintaining the original aspect ratio.

We include three sample images within the project template package which you can use for testing.

  1. Save/copy the three images to your Corona project's root folder (alongside main.lua) with an iOS-style suffix scheme of Launch.png, [email protected], and [email protected] respectively.

  2. Back in Xcode, in the central pane, select the Launch entry:

  1. Directly to its right, you'll notice three "slots" labeled as 1x, 2x, and 3x. From the Finder, drag the images you created earlier into their respective slots: Launch.png into the 1x slot, [email protected] into the 2x slot, and [email protected] into the 3x slot:
  1. Now, in the left-side Navigator column, select the LaunchScreen.storyboard file:

In the center pane, if you select View Controller Scene, you should see an approximate preview of what the launch screen will look like. Further adjustments and design of this storyboard are beyond the scope of this guide — we simply outline how to generate a basic launch screen with an image in the center.

  1. Save your project now, then select FileExport... from the main Xcode application menu.
Important

Before exporting, ensure that LaunchScreen.storyboard is still selected in the left-side Navigator column — this is essential to generate the proper file type.

  1. In the export dialog panel, navigate to your Corona project's root folder. Then, near the bottom, locate the File Format selection box and change the selection to Interface Builder Storyboard Package.

It's critical that you select Interface Builder Storyboard Package for this step — do not use the default option.

  1. When you're ready, click Save to create a LaunchScreen.storyboardc folder for your project.

To ensure that you did everything properly, please follow this checklist:

  1. In the Finder, navigate to your Corona project's root folder.

  2. Inside, check for a LaunchScreen.storyboardc file. If it doesn't exist, you may have forgotten to choose the proper location (the project's root folder) when exporting the file. If necessary, repeat steps 8-10 above.

  3. Get further information on the LaunchScreen.storyboardc file (⌘-I). Its kind should be an Interface Builder Compiled Storyboard Document. If it's not, you may have forgotten to choose the correct file format when exporting the file. If necessary, repeat steps 8-10 above.

  4. Check that the folder contains the three images which will be used for the launch screen: Launch.png, [email protected], and [email protected]. If these files don't exist, you may have forgotten to save/copy them to the root folder.

Build Settings

One final aspect is required to link up your new compiled storyboard package with the Corona project:

  1. Open the Corona project's build.settings file.

  2. Within the iphoneplist table, add a UILaunchStoryboardName key with a value of "LaunchScreen":

settings =
{
    iphone =
    {
        plist =
        {
            CFBundleIconFiles = {},  -- Required!
            UILaunchStoryboardName = "LaunchScreen",  -- Required!
        },
    },
}
  1. Save your build.settings file.
Important

If you have a UILaunchImages key and associated sub-tables in your plist table (see below), you must remove it, along with all of the image files associated with that setup. The UILaunchStoryboardName key supersedes it and the LaunchScreen.storyboardc file will control all of your launch screens.

Static Method

An alternative method to creating a LaunchScreen.storyboardc file is to include a set of static images within your project folder, then link them up within the project's build.settings file. These images must adhere to the names/sizes indicated below and they must be placed in the project's root directory alongside main.lua.

Note

If you have followed the steps above to create a storyboard-based launch screen, you can ignore this section entirely. The following information is only provided for those developers who want to use a wide array of static image files for launch screens.

File Size (w×h) Orientation Target Devices
[email protected] 640 × 960 portrait iPhone 4s
[email protected] 640 × 1136 portrait iPhone 5 / 5s
[email protected] 1136 × 640 landscape iPhone 5 / 5s
[email protected] 750 × 1334 portrait iPhone 6 / 6s / 7
[email protected] 1334 × 750 landscape iPhone 6 / 6s / 7
[email protected] 1242 × 2208 portrait iPhone 6 Plus / 6s Plus / 7 Plus
[email protected] 2208 × 1242 landscape iPhone 6 Plus / 6s Plus / 7 Plus
Default-Portrait.png 768 × 1024 portrait iPad 2 / 3, iPad Mini 1
Default-Landscape.png 1024 × 768 landscape iPad 2 / 3, iPad Mini 1
[email protected] 1536 × 2048 portrait iPad 4, iPad Air, iPad Mini 2 / 3 / 4, iPad Pro 9.7"
[email protected] 2048 × 1536 landscape iPad 4, iPad Air, iPad Mini 2 / 3 / 4, iPad Pro 9.7"
[email protected] 2048 × 2732 portrait iPad Pro 12"
[email protected] 2732 × 2048 landscape iPad Pro 12"

Once you've added these files to your project folder, you must specify their existence and other definitions in the UILaunchImages table of build.settings:

settings =
{
    iphone =
    {
        plist =
        {
            -- Required launch image files/definitions table
            UILaunchImages = {
                {  -- iPhone 4 Portrait
                    ["UILaunchImageMinimumOSVersion"] = "7.0",
                    ["UILaunchImageName"] = "Default",
                    ["UILaunchImageOrientation"] = "Portrait",
                    ["UILaunchImageSize"] = "{320, 480}"
                },
                {  -- iPhone 4 LandscapeLeft
                    ["UILaunchImageMinimumOSVersion"] = "7.0",
                    ["UILaunchImageName"] = "Default",
                    ["UILaunchImageOrientation"] = "LandscapeLeft",
                    ["UILaunchImageSize"] = "{320, 480}"
                },
                {  -- iPhone 4 LandscapeRight
                    ["UILaunchImageMinimumOSVersion"] = "7.0",
                    ["UILaunchImageName"] = "Default",
                    ["UILaunchImageOrientation"] = "LandscapeRight",
                    ["UILaunchImageSize"] = "{320, 480}"
                },
                {  -- iPhone 5 Portrait
                    ["UILaunchImageMinimumOSVersion"] = "7.0",
                    ["UILaunchImageName"] = "Default-568h",
                    ["UILaunchImageOrientation"] = "Portrait",
                    ["UILaunchImageSize"] = "{320, 568}"
                },
                {  -- iPhone 5 LandscapeLeft
                    ["UILaunchImageMinimumOSVersion"] = "7.0",
                    ["UILaunchImageName"] = "Default-568h",
                    ["UILaunchImageOrientation"] = "LandscapeLeft",
                    ["UILaunchImageSize"] = "{320, 568}"
                },
                {  -- iPhone 5 LandscapeRight
                    ["UILaunchImageMinimumOSVersion"] = "7.0",
                    ["UILaunchImageName"] = "Default-568h",
                    ["UILaunchImageOrientation"] = "LandscapeRight",
                    ["UILaunchImageSize"] = "{320, 568}"
                },
                {  -- iPad Portrait
                    ["UILaunchImageMinimumOSVersion"] = "7.0",
                    ["UILaunchImageName"] = "Default-Portrait",
                    ["UILaunchImageOrientation"] = "Portrait",
                    ["UILaunchImageSize"] = "{768, 1024}"
                },
                {  -- iPad LandscapeLeft
                    ["UILaunchImageMinimumOSVersion"] = "7.0",
                    ["UILaunchImageName"] = "Default-Landscape",
                    ["UILaunchImageOrientation"] = "LandscapeLeft",
                    ["UILaunchImageSize"] = "{768, 1024}"
                },
                {  -- iPad LandscapeRight
                    ["UILaunchImageMinimumOSVersion"] = "7.0",
                    ["UILaunchImageName"] = "Default-Landscape",
                    ["UILaunchImageOrientation"] = "LandscapeRight",
                    ["UILaunchImageSize"] = "{768, 1024}"
                },
                {  -- iPhone 6 Portrait
                    ["UILaunchImageMinimumOSVersion"] = "8.0",
                    ["UILaunchImageName"] = "Default-667h",
                    ["UILaunchImageOrientation"] = "Portrait",
                    ["UILaunchImageSize"] = "{375, 667}"
                },
                {  -- iPhone 6 LandscapeLeft
                    ["UILaunchImageMinimumOSVersion"] = "8.0",
                    ["UILaunchImageName"] = "Default-667h",
                    ["UILaunchImageOrientation"] = "LandscapeLeft",
                    ["UILaunchImageSize"] = "{375, 667}"
                },
                {  -- iPhone 6 LandscapeRight
                    ["UILaunchImageMinimumOSVersion"] = "8.0",
                    ["UILaunchImageName"] = "Default-667h",
                    ["UILaunchImageOrientation"] = "LandscapeRight",
                    ["UILaunchImageSize"] = "{375, 667}"
                },
                {  -- iPhone 6 Plus Portrait
                    ["UILaunchImageMinimumOSVersion"] = "8.0",
                    ["UILaunchImageName"] = "Default-736h",
                    ["UILaunchImageOrientation"] = "Portrait",
                    ["UILaunchImageSize"] = "{414, 736}"
                },
                {  -- iPhone 6 Plus LandscapeLeft
                    ["UILaunchImageMinimumOSVersion"] = "8.0",
                    ["UILaunchImageName"] = "Default-Landscape-736h",
                    ["UILaunchImageOrientation"] = "LandscapeLeft",
                    ["UILaunchImageSize"] = "{414, 736}"
                },
                {  -- iPhone 6 Plus LandscapeRight
                    ["UILaunchImageMinimumOSVersion"] = "8.0",
                    ["UILaunchImageName"] = "Default-Landscape-736h",
                    ["UILaunchImageOrientation"] = "LandscapeRight",
                    ["UILaunchImageSize"] = "{414, 736}"
                },
                {  -- iPad Pro Portrait
                    ["UILaunchImageMinimumOSVersion"] = "9.0",
                    ["UILaunchImageName"] = "Default-Portrait-1366",
                    ["UILaunchImageOrientation"] = "Portrait",
                    ["UILaunchImageSize"] = "{1024, 1366}"
                },
                {  -- iPad Pro Landscape Right
                    ["UILaunchImageMinimumOSVersion"] = "9.0",
                    ["UILaunchImageName"] = "Default-Landscape-1366",
                    ["UILaunchImageOrientation"] = "LandscapeRight",
                    ["UILaunchImageSize"] = "{1024, 1366}"
                },
                {  -- iPad Pro Landscape Left
                    ["UILaunchImageMinimumOSVersion"] = "9.0",
                    ["UILaunchImageName"] = "Default-Landscape-1366",
                    ["UILaunchImageOrientation"] = "LandscapeLeft",
                    ["UILaunchImageSize"] = "{1024, 1366}"
                },
            },
        },
    },
}