在Windows上编写Object C程序
随着iphone的流行,越来越多的程序员开始学习Object C编程,但一般来说编写Object C需要iMac计算机。这对于刚开始学习Object C编程的程序员是个问题。本文给出了一个在 windows 平台上学习Object C编程的方法。
1.下载GNUStep
http://ftpmain.gnustep.org/pub/gnustep/binaries/windows/
下载
gnustep-msys-system-x.x.x-setup.exe
gnustep-core-x.x.x-setup.exe
gnustep-cairo-x.x.x-setup.exe
gnustep-devel-x.x.x-setup.exe
将下载的GNUStep安装,比如C:\GNUStep
2. 下载JEdit
http://www.jedit.org/index.php?page=download
JEdit 是Freeware,可以用来编辑 .m 文件 .m 是Object C缺省后缀。 .m 相当于 .c 文件
3. 一个Object C教材
http://www.otierney.net/objective-c.html
---------------------------------------------
4. 安装后,执行msys.bat 启动 GNUStep 环境 (类Linux环境)
http://hi.csdn.net/attachment/201008/5/0_1280995402qzcz.gif
5. 编写示例程序
fraction.h
#import <Foundation/NSObject.h>
@interface Fraction: NSObject {
int numerator;
int denominator;
}
-(void) print;
-(void) setNumerator: (int) n;
-(void) setDenominator: (int) d;
-(int) numerator;
-(int) denominator;
@end
fraction.m
#import "fraction.h"
#import
@implementation Fraction
-(void) print {
printf( "%i/%i", numerator, denominator );
}
-(void) setNumerator: (int) n {
numerator = n;
}
-(void) setDenominator: (int) d {
denominator = d;
}
-(int) denominator {
return denominator;
}
-(int) numerator {
return numerator;
}
@end
main.m
#import
#import "fraction.h"
int main( int argc, const char *argv[] ) {
// create a new instance
Fraction *frac = [ init];
// set the values
;
;
// print it
printf( "The fraction is: " );
;
printf( "\n" );
// free memory
;
return 0;
}
6. 编写Makefile
在当前目录下创建GNUmakefile
include $(GNUSTEP_MAKEFILES)/common.make
TOOL_NAME = Hello
Hello_OBJC_FILES = main.m fraction.m
include $(GNUSTEP_MAKEFILES)/tool.make
6. 编译程序
$ make
将创建 obj目录 运行hello.exe
The fraction is: 1/3
这样环境就搭好了,你就可以继续学习 Object C了。
[ 本帖最后由 trisun 于 5-8-2010 18:14 编辑 ] 好贴要顶 :good
回复 #1 trisun 的帖子
这个应该只能学习一下Object-C的语法吧?不能在非Mac OS上写iPhone程序确实是个遗憾。 原帖由 ubuntuhk 于 5-8-2010 23:19 发表 http://www.freeoz.org/ibbs/images/common/back.gif这个应该只能学习一下Object-C的语法吧?不能在非Mac OS上写iPhone程序确实是个遗憾。
是的, 最终写iphone程序一般还是要Mac OS.
页:
[1]