Question

I just don't want to allocate 2-4 different sized images in bundle. They will shown for 0.2 second at launch and later never be used. Thus. I removed all launch images (just useless)

Is it acceptable by apple IOS app publishing rules ? (I cant see launch image. application starts immediately.thus launch image cannot be seen)

Was it helpful?

Solution 4

Yes dear, It is neccesarry.

Your app must include at least one image to be displayed while your app is launching.

See here App-Related Resources - iOS programming guide

OTHER TIPS

No, The app will not be acceptable without any launch images.

Quote by Apple:

Custom icons and images: - Application icon (required for all apps) - App icon for the App Store (required for all apps) - Launch image (required for all apps) - [...]

The app will indeed be rejected when no launch image is specified. But you can take a screenshot of your root view and setup it like launch image.

Ramos, there is compulsion of launch images. I did not added the launch images in my project and my app is on appstore. So you can submit app without adding launch images.

Hope this will help you.

You can show a view after some delay so that launch image should stay on screen for a while. I guess this is a workaround for this issue.

Edited:

In viewWillAppear

[self performSelector:@selector(viewDidLoad) withObject:self afterDelay:4.0];
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top