Windows环境下编译objective-c

一、在Windows环境下运行GNUstep

1.登陆这个网站http://ftpmain.gnustep.org/pub/gnustep/binaries/windows/

2.下载三个文件

gnustep-msys-system-0.30.0-setup.exe

gnustep-core-0.31.0-setup.exe

gnustep-devel-1.4.0-setup.exe

3.按顺序安装三个文件,并且都要安在同一目录下

4.安装完成后在开始菜单中找到shell打开编译运行

5.用任意编辑器写一个.m后缀的object-c程序测试,以下是例子 hello.m

    #import <Foundation/Foundation.h>  
      
    int main(int argc,const char *argv[])  
    {  
        NSString *s = [[NSString alloc] init];
        s = @"Hello, World";
        NSLog(s);
        [s release];
         return 0;  
    }  
在shell中的编译:

执行结果:

二、objective-c和c++的混合编程



你可能感兴趣的:(Windows环境下编译objective-c)