iPad Pro launch images

19 views
Skip to first unread message

Eric Shapiro

unread,
Jul 1, 2016, 12:25:19 AM7/1/16
to a2-cocoaheads
Does anyone know the best way to specify device-specific launch images including iPad Pro sized ones?

So far the only method that seems to work is using a plist entry for each specific screen size. See below.

I can use a LaunchScreen.storyboard, but I don't know how to specify a unique image for the iPad Pro.

Suggestions?

<key>UILaunchImages</key>
<array>
<dict>
<key>UILaunchImageMinimumOSVersion</key><string>9.0</string>
<key>UILaunchImageOrientation</key><string>Portrait</string>
<key>UILaunchImageSize</key><string>{768, 1024}</string>
<key>UILaunchImageName</key><string>LaunchScreen_768x1024</string>
</dict>
<dict>
<key>UILaunchImageMinimumOSVersion</key><string>9.0</string>
<key>UILaunchImageOrientation</key><string>Landscape</string>
<key>UILaunchImageSize</key><string>{768, 1024}</string>
<key>UILaunchImageName</key><string>LaunchScreen_1024x768.png</string>
</dict>
<dict>
<key>UILaunchImageMinimumOSVersion</key><string>9.0</string>
<key>UILaunchImageOrientation</key><string>Portrait</string>
<key>UILaunchImageSize</key><string>{1024, 1366}</string>
<key>UILaunchImageName</key><string>LaunchScreen_2048x2732</string>
</dict>
<dict>
<key>UILaunchImageMinimumOSVersion</key><string>9.0</string>
<key>UILaunchImageOrientation</key><string>Landscape</string>
<key>UILaunchImageSize</key><string>{1024, 1366}</string>
<key>UILaunchImageName</key><string>LaunchScreen_2732x2048</string>
</dict>
</array>

Thanks,
Eric

------------------------------------------------
Eric Shapiro sha...@relium.com
------------------------------------------------

Priya Rajagopal

unread,
Jul 1, 2016, 9:24:46 AM7/1/16
to a2-coc...@googlegroups.com
Yeah- the launch screen storyboard does not allow device specific images.
I include devices specific images in assets folder and reference in plist


Sent from my iPhone
> --
> You received this message because you are subscribed to the Google Groups "CocoaHeads Ann Arbor" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to a2-cocoahead...@googlegroups.com.
> To post to this group, send email to a2-coc...@googlegroups.com.
> Visit this group at https://groups.google.com/group/a2-cocoaheads.
> For more options, visit https://groups.google.com/d/optout.

Eric Shapiro

unread,
Jul 5, 2016, 5:45:06 PM7/5/16
to a2-cocoaheads
> On Jul 1, 2016, at 9:24 AM, 'Priya Rajagopal' via CocoaHeads Ann Arbor <a2-coc...@googlegroups.com> wrote:
>
> Yeah- the launch screen storyboard does not allow device specific images.
> I include devices specific images in assets folder and reference in plist

When I do this, the launch screens work fine, but we no longer support split screen multitasking. Apparently the LaunchScreen.storyboard is required for that?

Any suggestions?
Reply all
Reply to author
Forward
0 new messages