Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I add app images to the assets catalog for both the iPad and iPad Pro?

In Xcode 7.2 (Beta 4) there isn't a slot for an iPad Pro in the image asset catalog (xcassets folder). If I select an image (not app icon) in the Xcode assets there is no slot for iPad Pro. There is just a 1x slot and a 2x slot when iPad is selected as the device. Since the iPad Pro is a higher resolution I would have thought they would have needed to add an iPad Pro slot.

Am I missing something here?

My thought was that I could build the UI to be based on an image's intrinsic size so that a particular image and its surrounding UI elements would appear to be the same size for both the iPad Pro and previous iPad models.

like image 769
morbidhawk Avatar asked Nov 19 '15 22:11

morbidhawk


People also ask

What is an asset catalog?

An asset catalog is a type of file used to organize and manage different assets and image resolutions used by your app's user interface.


1 Answers

The iPad Pro uses 2x assets even though its resolution is the highest in the iPad family (2732x2048). The only iPad Pro specific setting in an asset catalog right now is for the AppIcon image set:

iPad Pro App Icon

Additionally, the LaunchImage image set does not support the iPad Pro either, as Apple is dropping support of launch images in favor of Launch Storyboards. See rdar://22915712 for more information.

like image 70
JAL Avatar answered Oct 11 '22 18:10

JAL