CoreImage.framework not found

I am developing a cocoa application. I use CIFilter and CIImage to apply basic concepts to NSImage.

Therefore, I need to import CoreImage.framework . But I do not get the framework in the folders of the developer library. I am looking for a structure in /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk/System/Library/Frameworks

and

/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/System/Library/Frameworks

But CoreImage.framework does not exist.

Can anyone help me add CoreImage.framework to my code?

Thanks, iPHoneDv

+4
source share
2 answers

Apple's documentation is not very useful in this regard, but you will find CoreImage.framework hiding in QuartzCore.framework

So add “ QuartzCore.framework ” to your project and everything should be installed.

+21
source

Import QuartzCore.framework

 Library/Frameworks/QuartzCore.framework 
+2
source

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


All Articles