skip to Main Content

I upgraded my xcode to version 12.3 and now when I create a new project, the simulator does not show full screen. The old projects however, does show simulator in full screen.

I checked this (very old) question and it says to add a certain file, how can I do that?

enter image description here

enter image description here

3

Answers


  1. In the Info.plist file add key: Launch screen interface file base name and value: LaunchScreen

    enter image description here

    Login or Signup to reply.
  2. In my case I removed launchScreen, and then added it back

    So, to add launch screen if u accidentally removed it,

    Press cmd + n

    This is allow you to add new launch screen

    Then in the general tab under

    App Icons and Launch Images

    Set your launch screen file

    also in the deployment Info
    set

    Main interface

    Login or Signup to reply.
  3. open the project in Xcode -> select Target -> General -> add Launch screen in Launch Screen File

    open the project in Xcode -> select Target -> General -> add Launch screen in Launch Screen File
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search