Home > Mobile >  Xamarin Black Splash Screen
Xamarin Black Splash Screen

Time:10-13

I tried to make a new storyboard Splash Screen on my Mac, but when I exported it from Xcode to my app project on Windows Visual Studio, the app didn't work. I had a black screen when starting the debug session on my simulator. I backed up the previous storyboard code in order it won't work but it didn't work with the original one either..

CodePudding user response:

I found a solution that told me to edit the info.plist and remove those lines:

<key>UIApplicationSceneManifest</key>
 <dict>
     <key>UIApplicationSupportsMultipleScenes</key>
     <true/>
 </dict>

And it worked for me :)

  • Related