31

I am working on a iPhone App and I am trying to set a launch screen image. How can I set a launch screen image, is it possible to add a UIImageView and assign it a image?

If you need more information to answer the question then please let me know.

Thanks in advance

enter image description here

3
  • from ios8 onwards, you have 2 options, use set of images or use 1 storyboard that will auto scale. To use set of images, click images.xcassets and then right click to select new launch images. fill in all the different sizes of image. After that set the images as your launch screen from the general tab. Commented Jun 24, 2015 at 12:05
  • you should customize LaunchScreen.storyboard visit stackoverflow.com/a/41548620/5391914 Commented Jan 9, 2017 at 13:31
  • This link works for me stackoverflow.com/questions/59169791/… Commented Nov 6, 2020 at 11:44

3 Answers 3

33

Yes, you can easily set a UIImageView in the LaunchScreen. Simply delete the pre-existing labels from the LaunchScreen.xib, add a UIImageView from the Interface Builder. Assign the following 4 constraints to that UIImageView with respect to the parent view:

  • Bottom Space to container
  • Top Space to container
  • Leading Space to Container
  • Trailing Space to Container

And finally set the image to the UIImageView.

Hope this helps you in what you wanted to do.

Update:

Have a look at the following image for further description:

Sign up to request clarification or add additional context in comments.

7 Comments

Thank you for the reply. I just have one question in which class do I set the image to the UIImageView? The launch screen.xib doesn't have a class associated with it. I usually set images within the viewDidLoad function of the classes.
You don't need a class to do that. You can simply set the constraints from the Interface Builder (.xib file)
yes, but where do I actually set the image to the UIImageView, usually we use self.view.backgroundColor = UIColor(patternImage: UIImage(named: "podcastbg.jpg")!)
Have a look at my updated answer. I have added an image for clarification on both things.
If we use one image the content in the image got squished. So please add some answer.
|
6

In iOS 8 and later, you can create a XIB or storyboard file instead of a static launch image. When you create a launch file in Interface Builder, you use size classes to define different layouts for different display environments and you use Auto Layout to make minor adjustments.

https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/LaunchImages.html

Comments

-1

For adding a launchimage(or any type of image), in Xcode(9.4.1), simply go the Assets.xcassets and you can add it from the self-explanatory addition feature there. For my iphone app, i simply added it, in a jiffy. Also, you need to follow the instructions for adding constraints for the image, as described by one of the answerers with screenshot, above. Finally, you can save and test to see/verify your launch image appearing in the launch of your app.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.