Remove launch screen, Xcode 7

前端 未结 4 1964
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-17 22:59

I can find a bunch of answers from pre-2014 about removing the launch/splash screen by removing the line \"Launch screen interface file base name\", but in this project on X

相关标签:
4条回答
  • 2021-01-17 23:15

    Simple way to remove lunch screen in IOS (react-native)

    Goto project IOS directory

    IOS -> Project Folder -> Base.iproj -> Open LaunchScreen.xib file

    then remove < View > .... < / View > tag from file and save file

    0 讨论(0)
  • 2021-01-17 23:29

    Contrary to an answer I received, you CAN disable the splash/launch screen. To do so:

    1. click on your project

    2. go to General

    3. scroll down to App Icons and Launch Images
    4. Change "Launch Screen File" to whatever your first view controller is, i.e. MainViewController

    Your first view controller will now display instead of the Launch Image.

    0 讨论(0)
  • 2021-01-17 23:31

    You can open XCode and try this:

    0 讨论(0)
  • 2021-01-17 23:34

    You need to create a storyboard (not a xib file) and then add it to Launch Screen File. Then you can have your custom splash view controller inside it.

    Remember to mark your splash view controller as Is Initial View Control.

    0 讨论(0)
提交回复
热议问题