testing
testing

Reputation: 20289

How to create a launch image or how to get an empty status bar

I want to create a launch image for my app. The HIG states:

For iPhone and iPod touch create launch images that include the status bar region in the following sizes:

  • 320 x 480 pixels
  • 640 x 960 pixels (high resolution)

I've tried to screenshot my app within the iPhone Simulator. But here the status bar is on the screen including signal strength, carrier, time and battery life. So there are two possibilities:

Is there a way to hide the informations in the status bar in iPhone Simulator? Should I leave out the status bar as talked here?

Solution:

It seems that all three answers are right. Here are the solutions:

  1. Supply images of size 320x480 / 640x960 with or without cleared status bar

  2. Crop images (without status bar). Images have the size 320x460 and 640x920 then.

To be conform to the HIG I'll choose option no. 1

Upvotes: 5

Views: 7911

Answers (4)

user2401451
user2401451

Reputation: 21

For the perfect screenshot you can run the following function on your phone if you wish:

    if (Camera.isSupported)
{
    if (CameraRoll.supportsAddBitmapData)
    {

        var cameraRoll:CameraRoll = new CameraRoll();
        var bitmapData:BitmapData = new BitmapData(deviceWidth,deviceHeight);
        bitmapData.draw(stage);
        cameraRoll.addBitmapData(bitmapData);
    }
}

Upvotes: -1

Björn Marschollek
Björn Marschollek

Reputation: 10009

It is perfectly fine to supply an image sized 320x460. The iPhone will display the status bar and your image underneath. I have an application in the AppStore with such an image and never ran into any problems with the review process.

If you supply an image sized 320x480, the status bar will overlay it.

Upvotes: 5

Nimrod
Nimrod

Reputation: 5133

Have you tried it without doing anything? I think the correct toolbar will be overlaid on top of the image, from the looks of things.

Upvotes: 3

deanWombourne
deanWombourne

Reputation: 38475

I just used photoshop, selected the left most pixels in the status bbar (to get the gradient) and enlarged it to the right to cover all of the text / icons - this meant I had the status bar's gradient with no incorrect stuff on it.

It seemed to look OK.

Upvotes: 1

Related Questions