Dyld isuess (library not loaded)

I have this message when I build my project:

dyld: library not loaded:

@rpath/iPhoneSimulatorRemoteClient.framework/Versions/A/iPhoneSimulatorRemoteClient Referenced from: /Users/dev01/mobile/ios/Test/test/testTests/FoneMonkey/bin/iphonesim Reason: image not found 

This is a dynamic communication error, and, as I understand it, this error was fixed because the image was not found. it is right?

What steps should be taken to resolve errors?

I found the link, and since I understood this error, because I am using xcode 4.3. Now I tried it on 4.2 and something good.

But I do not know how to run it on Xcode 4.3

+6
source share
2 answers

Perhaps you have this problem after adding a new library, and you linked it in the real path to the framework, if you drag this library into the embedded path of the framework, then the problem will be solved. Another option is that in the build scheme you turned on malloc memory management, if you disable it, the problem will be solved.

0
source

Check the settings of the SDK project (i.e., when switching from SDK 6.x to 7.x), perhaps one of the libraries was not compiled for the architecture and purpose of the project. And the way. Clear DerivedData and remove the application from the simulator (if any). If you still need Sdk, just copy it from Xcode 4.6. (3) for both the device and the simulator and see if this solves your problem.

-1
source

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


All Articles