Problem With the LaunchScreen

After Replacing with the LaunchScreen in place of LaunchImage my application text and all got reduced. Why is it so?

Replies

What is being reduced ?


The Launchscreen only ? Other VC ?


Which version of SCode ? Which device ?


Have you checked that VC presentation is defined as "full screen", in the Attributes inspector ?

What is being reduced?

-> Font sizes of Labels throughout the application and the collection view Layout.


The Launchscreen only? Other VC?

-> Other VC


Which version of SCode? Which device?

-> Xcode -10.2 as well as 11

Devices - in all Ipads


Have you checked that VC presentation is defined as "full screen", in the Attributes inspector?

-> We are using the Xib and we don't have these features over there.

Ssounds like maybe your app was being scaled up before. Now that you've opted in to supporting all the latest screen sizes by using a launch storyboard, your app is now seeing the native screen size on larger devices.


What are the dimensions of the UIScreen mainScreen bounds in each case?

I experienced a similar problem on iPad, with VC in reduced format.


There were 2 reasons:

- the sceneDelegate

-> Check if you have a SceneDelegate.swift file.

-> If so, try to comment it out and see what happens


- The VCs presentation was defined as Automatic

-> I changed to "full screen", in the Attributes inspector


Do you confirm that VCs are of correct size, and only their content is scaled down ?