分类: C/C++
2011-07-22 15:27:47
在网上找了很多 下面给出最简单的方法
装一堆东西先:
编辑 .bashrc 加入
写段小程序测试下:
建个目录 test
创建文件hello.m,内容如下:
/*
* The next #include line is generally present in all Objective-C
* source files that use GNUstep. The Foundation.h header file
* includes all the other standard header files you need.
*/
#include
/*
* declare the Test class implements the class method (classStringValue).
*/
@interface Test
+ (const char *) classStringValue;
@end
/**
* Define the Test class and the class method (classStringValue).
*/
@implementation Test
+ (const char *) classStringValue;
{
return “this is the string value of the Test class”;
}
@end
/**
* main() function: pass a message to the Test class and print the returned string
*/
int main(void)
{
printf(“%s\n”, [Test classStringValue]);
return 0;
}
当然还有很重要的GNUmakefile:
然后执行 make
如果成功就会出现obj目录
使用 ./obj/LogTest 执行
搞定
希望能对刚入们的iphone开发者有用