Which is the cause for dyld`dyld_fatal_error, a incompatible api on iOS?

前端 未结 7 984
北恋
北恋 2021-01-07 20:21

I\'m moving part of my projects to iOS 5 / ARC. One of the oldest project (iOS 4.2, armv6 for support iPod Touch 2g) is giving to me:

dyld`dyld_fatal_error:
         


        
7条回答
  •  伪装坚强ぢ
    2021-01-07 21:16

    If you go to the Console Output you'll se an error telling which framework is missing in the device and causing the problem (like grundyoso said in his answer).

    So in order to fix this you can go to the target's General tab and add the missing framework in the Embedded Binaries section.

    This will copy the framework to the app so it will never be missed on any device.

提交回复
热议问题