Dyld: library not loaded: image not found

I just found that my application does not start in version 4.3, even if the deployment target is set to 4.3.

I get the following error: any ideas?

dyld: library not loaded: /System/Library/Frameworks/CoreImage.framework/CoreImage Link from: / Users / me / Library / Application Support / iPhone Simulator / 4.3.2 / Applications / E8046B99-C01A-4F62-A875-1261367763A5 / MyApp.app/MyApp Reason: Image not found

+4
source share
3 answers

Are you sure CoreImage is available in 4.3.2?

Check it:

https://developer.apple.com/library/ios/#documentation/GraphicsImaging/Conceptual/CoreImaging/ci_intro/ci_intro.html

"Core Image is an image processing technology built into Mac OS X v10.4 and iOS 5.0 ..."

+5
source

In the phases of building the goal β†’ Linking binaries to libraries assigns the appropriate infrastructure (CoreImage.framework in your case) to β€œOptional” instead of β€œRequired”.

+4
source

Core Image - iOS 5 and above. You need to set a development goal for iOS 5 and add the CoreImage binary link - link with libararies (CoreImage Framework).

+2
source

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


All Articles