Questions tagged [launch-screen]

307 questions
0
votes
1 answer

Add different constraints for different iPhones(i.e respective sizes) on launch screen

I want to add different constraints for different iPhones(i.e respective sizes) on launch screen.I researched regarding this and found "varying Traits".But, this doesn't worked. Any help appreciated.
datha
  • 359
  • 2
  • 14
0
votes
1 answer

Adding dynamically current year in a Label in LaunchScreen.xib in iOS

Is it possible to add the current year dynamically to a Label to show "Copyright current year" in the LaunchScreen.xib in iOS using Objective C? If yes, could you please write the steps needed? From my knowledge, I think the LaunchScreen is only to…
Simant
  • 3,142
  • 4
  • 32
  • 61
0
votes
1 answer

Xcode 9.3 Launchscreen.storyboard looses alpha channel in UIImageView PNG when executing

I have a PNG file in the Xcode project navigator. It has an alpha channel (rounded corners icon style). I have initialised a UIImageView in the Launchscreen.storyboard with this PNG file. See screenshot. When I run the Simulator the alpha channel…
Hugo F
  • 620
  • 6
  • 11
0
votes
1 answer

Launch screen doesn't display the logo image

In my launchscreen storyboard, I have 2 image views, one for the background and the other for the logo. It was working fine until I just changed the image of the logo! I will get only the background!!! Here a screenshot of the storyboard: and here…
mrs.tat
  • 597
  • 2
  • 6
  • 17
0
votes
2 answers

Runtime imageview is not showing in Launcher activity

With the code below my background image is not showing in my launchscreen's activity. I have also a thread with a sleep of three seconds but I see only white screen as background. After the delay, I redirect to another activity (in OnStart…
Carlo
  • 813
  • 1
  • 15
  • 34
0
votes
1 answer

iOS launch screen show wrong image resources

My app has modified the launch screen on this version. and the previous version of my app was uploaded already on App Store. And I found something strange during the ready to deploy this version. This is the process that I found the…
Byoth
  • 1,905
  • 6
  • 16
  • 28
0
votes
1 answer

Replace Launch screen text on each app login

I want to change the text of a label in the LaunchScreen.storyboard on each application launch. The problem is that when I am trying to set a UIViewController to the LaunchScreen.storyboard I get this error: "Launch screens may not set custom…
Nir.Hayun
  • 119
  • 11
0
votes
0 answers

iOS Launch Screen File not updating with new project

I made a new project(Swift) to completely upgrade a legacy app (ObjC). The upgrade is fine, but still seeing the old Launch Screen. Is there anyway to reset that (other than reinstalling).
Tim Walsh
  • 1,089
  • 11
  • 27
0
votes
1 answer

Launch Screen issues

When I first started to create my app, I thought that using launch screens would be a good idea, so I added the LaunchScreen.storyboard file and created a view controller meant to be the launch screen. Now, however, I would like to remove this…
Xcoder
  • 1,433
  • 3
  • 17
  • 37
0
votes
1 answer

image view only shows background color in launch screen

I'm having some problems with my app's launch screen storyboard. When I run the app on an iPhone 5S, the image is displayed. However, when I run the app on an iPhone 8, the background color of the UIImageView is shown. In the project settings, at…
Mercutio
  • 1,152
  • 1
  • 14
  • 33
0
votes
0 answers

App Not Killing Completely

I am working on an app where i have to show the launch screen for little long so for that i have added a viewcontroller(1) in the main storyboard and deleted the view Controller in launchscreen.storyboard. Now the viewcontroller(1) is acting as a…
0
votes
2 answers

Imageview leaves the padding in launch screen in xcode 9.2 ios

I want to make an application which has splash image of full screen size.App should be compatible to all the device from iphone 5 to iphone 10.but when i add image in launchscreen.storyboardit leaves the space from right left and bottom.how to add…
Aashi
  • 170
  • 2
  • 14
0
votes
1 answer

Change launchScreen color

My application supported multi-theme. I need to change the launch screen color after user changing the theme. Is this possible? I tried to set the color in app delegate in application.didFinishLaunchingWithOptions but nothing changed.
haneen hasan
  • 63
  • 1
  • 1
  • 10
0
votes
0 answers

iOS XCode launch screen storyboard does not display image from asset catalog when running on device

I'm running into an issue where an iOS app project using Launch Storyboard does not display some images from the asset catalog. But it can display another image in the same image view. This tells me that the image view is set up correctly, and…
Alex Stone
  • 46,408
  • 55
  • 231
  • 407
0
votes
0 answers

iOS LaunchScreen.storyboard handling different screen ratios

I need help getting a very basic LaunchScreen.storyboard working. My launch screen is just an image. I need the storyboard to handle the image by letterboxing it if the device ratio is not 4:3 (iPad). I have a Universal app (iPad/iPhone) created…