Xcode beta 6 iOS 8: Simulator not working

后端 未结 20 1958
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-27 20:33

I cannot launch the simulator successfully. Once I launch the IOS Simulator this error appears:

\"Unable to boot the IOS Simulator.\"

20条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-27 21:30

    I tried everything mentioned above and nothing worked.

    Finally the only way to make it work was unsetting DYLD_INSERT_LIBRARIES=/usr/lib/libimckit.dylib

    How I did this:

    1. Open terminal and typing "sudo vi /etc/launchd.conf"
    2. Changing

    "setenv DYLD_INSERT_LIBRARIES /usr/lib/libimckit.dylib"

    to

    "unsetenv DYLD_INSERT_LIBRARIES /usr/lib/libimckit.dylib"

    1. Save changes
    2. Reboot your system

    In this post [1] explain what DYLD_INSERT_LIBRARIES is for

    [1] https://stackoverflow.com/a/26053165/2091181

提交回复
热议问题