The run responds to native in xcode, my error screen is white. Unable to see error messages

When I run the native response in xcode, my error screen is white. See screenshot. If I select one of the lines, I can see the text. But it seems rather strange. Any ideas what might trigger this? Not always like this.

screenshot

+4
source share
1 answer

I recently had the same issue and used git bisectto find the commit where the issue was introduced. In my case, I found that when we changed the startup screen from XIB (LaunchScreen.xib) to the storyboard (LaunchScreen.storyboard), it made my error screen look like yours, so restoring these changes fixed it for me.

+1

Source: https://habr.com/ru/post/1659672/


All Articles