我截断了一个.c代码,不想移植到Objective-C。此.c文件可在iPhone平台上使用,但不能在OS X上使用。似乎编译器不知道如何处理
#import <CoreGraphics/CoreGraphics.h>
因此它不知道CGImageRef:
ImageArray3D *ia3d_createWithCGImage(CGImageRef image, int nLargestElements);
error: syntax error before 'image'
感谢您的帮助! ;)
最佳答案
您是否已将ApplicationServices.framework添加到目标?
关于c - CGImageRef在OS X应用程序中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1311426/