我导入了CoreGraphics,QuartzCore和AssetsLibrary框架。为什么我会在CGImageDestinationRef中获得未声明的标识符错误?
以下是我宣布的方式:
CGImageDestinationRef imageDestinationRef = CGImageDestinationCreateWithURL((__bridge CFURLRef)directoryURL, kUTTypeJPEG, 1, NULL);
答案 0 :(得分:8)
因为its defined in the ImageIO
framework。链接并导入它,你会没事的。
同样是kUTTTypeJPEG
常数is defined in the MobileCoreServices
framework,所以你也需要它。