Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iPad Application shows app icon as launch screen in iOS 10

Tags:

In iPad iOS 10 Application shows app icon as launch screen / Splash screen if we don't provide any launch screen.

I had not set any launch screen or image.

enter image description here

And LaunchImage asset is blank.

enter image description here

It looks weird.

see

enter image description here

Is it bug ? or feature?

FYI

Application is not in App Store it's enterprise app.

like image 578
Toseef Khilji Avatar asked Sep 19 '16 11:09

Toseef Khilji


People also ask

What is an app launch screen?

Launch screens can be displayed upon an app's launch from the home screen when an app loads, instead of displaying a blank screen. Displaying a launch screen can decrease the sense of a long load time, and has the potential to add delight to the user experience.

Why are my app icons not showing iOS?

If you're able to fetch the app through Spotlight Search and App library but can't seem to locate its icon, it's possible that you might have hidden the Home Screen page containing that icon. To unhide your Home Screen, tap and hold anywhere on the empty space on your Home Screen.


Video Answer


2 Answers

I was also getting this issue in my app for iPad and I found solution of this.

Solution: I added a launchscreen.xib in my app and select this file in to LaunchScreen section of 'General' section in target window.

I did not add launch images of iPad devices, may be this is the reason of issue.

So now this issue has resolved. :)

enter image description here

like image 97
ajeet sharma Avatar answered Sep 27 '22 21:09

ajeet sharma


This is probably due to the animation that is used to give the "zoom" effect from the app icon when the user launches your app.

You will notice that the launch image animates it's alpha from 0.0 to 1.0 as the user opens the app.

In your case, you have not specified an image so there is nothing to show. This is something that isn't supported as your app would be rejected if you tried to submit to iTunes Connect. You should always ensure that you have a launch image (or nib) set, even if it's just a plain white image.


You could probably try filing a bug report about it but my expectation will be that you are just told to add image resources to the asset in the Assets Catalog.

like image 41
liamnichols Avatar answered Sep 27 '22 22:09

liamnichols