当我尝试在 cygwin Windows 7 中编译 Object-c 程序时出现此错误,但该程序在 Xcode 中执行。
main.m:5:3: error: 'NSString' undeclared (首先在这个函数中使用)
#include <stdio.h>
int main (int argc, const char * argv[])
{
NSString *str1 = @"1st string";
NSString *str2 = @"2nd string";
NSLog(@"Hello, World!");
return 0;
}
在 cygwin 中使用以下 CMD 执行,
gcc -c -Wno-import main.m
你能帮我解决这个编译错误吗?