Getting dyld_fatal_error after updating to Xcode 6 beta 4 using swift

后端 未结 12 2171
伪装坚强ぢ
伪装坚强ぢ 2020-12-14 14:30

I just recently downloaded Xcode 6 beta 4, and my swift project compiles with no errors but before it gets to my code I get a dyld_fatal_error just above start in the call s

12条回答
  •  佛祖请我去吃肉
    2020-12-14 14:59

    Cleaning, restarting, deleting etc didn't work for me.

    I have a project containing another project. When I ran the project on iOS 7 and the contained project was accessed in code, the app stopped at the line below:

    enter image description here

    After many days, I saw that the deployment target for the container project was 7.0 (as can be seen below).

    enter image description here

    The contained project on the other hand, had a deployment target of 8.1 (as can be seen below). enter image description here

    Changing the deployment target of the contained project to 7.0 solved my problem!

    The project was working fine on iOS 8 devices.

提交回复
热议问题