Objective-c未声明的CGImageDestinationRef标识符

时间:2013-08-20 15:26:19

标签: objective-c cgimageref

我导入了CoreGraphics,QuartzCore和AssetsLibrary框架。为什么我会在CGImageDestinationRef中获得未声明的标识符错误?

以下是我宣布的方式:

 CGImageDestinationRef imageDestinationRef = CGImageDestinationCreateWithURL((__bridge CFURLRef)directoryURL, kUTTypeJPEG, 1, NULL);

1 个答案:

答案 0 :(得分:8)

因为its defined in the ImageIO framework。链接并导入它,你会没事的。

同样是kUTTTypeJPEG常数is defined in the MobileCoreServices framework,所以你也需要它。