-
Re: Problem With the LaunchScreen
Claude31 Oct 15, 2019 5:37 AM (in response to meenu09)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 ?
-
Re: Problem With the LaunchScreen
meenu09 Oct 15, 2019 10:41 PM (in response to Claude31)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.
-
Re: Problem With the LaunchScreen
Claude31 Oct 16, 2019 12:41 AM (in response to meenu09)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 ?
-
-
-
Re: Problem With the LaunchScreen
junkpile Oct 15, 2019 11:16 PM (in response to meenu09)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?