Spoiled xcode 9 simulator. Like a broken tv

Almost every launch of the application on any Xcode 9 simulator results in the screenshot: enter image description here Maybe someone ran into this problem and solved it?

+4
source share
1 answer

You can try switching the rendering engine to OpenGl instead of metal

Use this command in the terminal.

defaults write com.apple.CoreSimulator.IndigoFramebufferServices FramebufferRendererHint 2

(1 = metal, 2 = forced use of OpenGL, 3 = OpenGL)

Or, if your gpu is HD3000, you need to use

defaults write com.apple.CoreSimulator.IndigoFramebufferServices FramebufferEmulationHint 1

+2
source

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


All Articles