我有一个.c代码剪断,我不想移植到Objective-C。这个.c文件在iPhone平台上运行,但在OS X上没有。似乎编译器不知道如何处理
#import <CoreGraphics/CoreGraphics.h>
所以它不知道 CGImageRef :
ImageArray3D *ia3d_createWithCGImage(CGImageRef image, int nLargestElements);
error: syntax error before 'image'
非常感谢您的帮助! ;)
答案 0 :(得分:1)
您是否已将ApplicationServices.framework添加到目标中?