Reputation: 2309
My apps' splash screens are all plain black after upgrading to iOS9.
Does anybody know why this is? Some of them are using a .xib splash screen and some are using images, but they're all just black now. Does an app have to be built with Xcode 7 for the splash screen to work in iOS9? Has anyone seen some documentation on whether this is an intended breaking change from Apple?
Thank you!
UPDATE: Looking through the apps again it seems my older apps, which only had a Launch image and no .xib are still displaying correctly, so the issue seems related to the launch screen .xib
UPDATE2: As hagi pointed out in the comment, after re-installing the very same binary it starts working again so the cause is probably that launch images are generated from the xib whenever the app is installed, and stored somewhere, and then when upgrading to iOS9, for some reason (unintended Apple bug most likely), the generated images are cleared, and the app ends up with no splash. And that's why the old-fashioned launch images are still safe and not affected by this, cause they're already baked into the app.
I'll report it as a bug to Apple.
Upvotes: 61
Views: 51161
Reputation: 1358
Resizing the image and changing the format to png fixed it for me :
Upvotes: 0
Reputation: 95
What worked for me was
1 - Go to LaunchScreen.storyboard 2 - Select is the initial view controller
And you are good to go.
Upvotes: 4
Reputation: 649
In the storyboard 'Clears Graphics Context' box unchecked then It works.
Upvotes: 4
Reputation: 4779
Just to point out that once again (as this solution didn't appear in answers, and I've personally lost around two hours when "fixing" that), sometimes, especially when the app is in active development/debugging, it requires iOS device to reboot for the launch screen to be fixed.
Upvotes: 8
Reputation: 11
We always need to add proper size of image if we are using image.Assets for Launch image and select correct options for launch image Source on Clicking project navigator>General>AppICons and launch images > launch image Source > BrandAssets
If size of launch image is not correct with respect to device on which you are try to running app, then your app will run as iPhone 4 showing black top and bottom bars.
Upvotes: 0
Reputation: 547
The common solution of adding the Images in LaunchImage and setting it in Launch Image Source and deleting the entry in Launch Screen File did not solve my issue. The launch image is dependent on the iPhone you are using. Since my app was for iOS 8.0 and greater, choosing it in LaunchImage will ask you to upload only Retine 4.5" and Retina 5.5" images. But these sizes will work for iPhone 6 and 6 Plus. You should upload the images based on the device.
iPhone 4S:640 x 960 (@2x)
iPhone 5:640 x 1136 (@2x)
iPhone 6: 750 x 1334 (@2x) portrait, 1334 x 750 (@2x) landscape
iPhone 6 Plus: 1242 x 2208 (@3x) portrait, 2208 x 1242 (@3x) landscape
I wasted so much time solving the black screen launchimage issue. Hope this helps someone.
Upvotes: 0
Reputation: 1742
With me uninstalling the app, or rebooting the device didn't help. I used XCode for 5 more minutes, which is the mean time between failure in XCode and it gave "Unkown error occurred" error, which was very helpful. Of course as an experienced XCode developer I knew what to do, force-quit, clean the project, rebuild.
The first error was solved meanwhile as I had forgotten about that.
Upvotes: 3
Reputation: 503
I have fixed this issue after removed Size Classes
for LaunchScreen.xib
I used only Auto Layout
for it.
Upvotes: 2
Reputation: 926
Easy fix. No need to mess with anything. Xcode 7 just prefers the images to be "Universal".
Done. Now your launch screen works and Xcode is happier.
Upvotes: 34
Reputation: 1229
I had the same issue with the new iOS 9 project I built using Unity (5.2). To fix that I added the image that I want to show as the launch image to the LaunchScreen-iPad.xib file's Image view.
Upvotes: 1
Reputation: 759
I had the exact problem and had a black launch screen after using Xcode 7, and at first re-adding the images in Launch-Screen.xib worked but it went black again.
I fixed this permanently by moving the images referenced by Launch-Screen.xib into an asset catalog, rather than using the png filenames.
Upvotes: 9
Reputation: 594
Starting from iOS9 and Xcode 7 you are required to provide a LaunchScreen.storyboard for your launch screen in order to support the new multitasking feature on iPad.
To opt out of being eligible to participate in Slide Over and Split View, add the UIRequiresFullScreen key to your Xcode project’s Info.plist file and apply the Boolean value YES.
Upvotes: 2
Reputation: 310
The problem maybe because missing image size: .png, @2x.png, @3x.png at LaunchScreen.xib
I made loading screen by LaunchScreen.xib In this xib has load a image launch.png But there are missing size launch.png, just exist [email protected] and [email protected] After add missing image: launch.png, black square bug is gone.
Upvotes: 2
Reputation: 255
I had the same problem. I downloaded Xcode 7 and upgraded my project to swift 2.0. After recompiling the issue was gone at first but then it started to happen again later on during my tests on other unrelated code.
So far two things get this fixed, in both cases temporarily. Remove the background image, add the same image with another name. New image works for a while. Second, is you resize the image view, and in most cases the image starts to work again, but only for a while.
I submitted my new update to iTunes connect while I was seeing the splash screen. Not sure if this is an operating system issue or app api issue that gets corrected with a recompilation of code.
I also tried enabling and disabling the new Bitcode feature but that didn't help.
Upvotes: 1
Reputation: 384
Same problem here after I updated to iOS 9. Re-installing the app from the App Store seems to solve the problem. I guess, it's an iOS 9 glitch.
Upvotes: 15
Reputation: 29896
I noticed the same issue on the launch screen and have a black square in the middle of the screen.
It might be due to missing images at the specified formats .e.g @2x, @3x etc.
Upvotes: 1
Reputation: 529
I hope above information will help you.
Upvotes: 6