一、安裝編譯器 java
Objective-C的編譯器有不少,其中LLVM屬於從GCC發展出來的,主要使用在蘋果的平臺中,GNU能夠使用GnuStep,網址是http://wwwmain.gnustep.org/,從這裏能夠下載Windows版本的gcc編譯器,配合codeblocks能夠編譯調試object c程序。
進入下載頁面,下載上面3個軟件包,安裝,例如安裝到D:\GNUstep,ide
二、安裝CodeBlocks IDE環境測試
下載地址:http://www.codeblocks.org/idea
三、配置編譯器spa
安裝好codeblocks以後,進入Settings->Compiler and debugger...,選擇GNU GCC Compiler編譯器,複製從新命名爲「GNUstep MinGW Compiler「配置.net
編譯其餘選項錄入:-fconstant-string-class=NSConstantString -std=c99debug
同時指定搜索目錄:
》編譯器的搜索目錄是D:\GNUstep\GNUstep\System\Library\Headers
》linker的搜索目錄設置爲D:\GNUstep\GNUstep\System\Library\Libraries,同時設置linker的參數:-lobjc -lgnustep-base
或者能夠在linker選項中加入D:\GNUstep\GNUstep\System\Library\Libraries下面的2個文件libgnustep-base.dll.a,libobjc.dll.a調試
設置編譯器、鏈接器的搜索目錄code
四、配置語法、文件類型,關鍵字等blog
添加文件類型支持
1) 進入Settings->Environment...
2) 選擇 Files extension handling 添加*.m
3) 進入 Project->Project tree->Edit file types & categories...
4) 在Sources, 下面添加 *.m到文件類型列表中.
添加語法高亮支持
1) 進入 Settings->Editor...
2) 選擇 Syntax highlighting 進入Filemasks.... 添加*.m 到文件類型列表中.
3) 進入 Keywords... (緊靠Filemasks...) 添加下面的關鍵字到列表中
@interface @implementation @end @class @selector @protocol @public @protected @private id BOOL YES NO SEL nil NULL self |
五、代碼測試
新建一個工程,修改main.c爲main.m,錄入下面代碼
#import <Foundation/Foundation.h> int main (int argc, const char *argv[]) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; NSLog(@"%@",@"hello world"); [pool drain]; return 0; }
編譯運行效果以下:
2012-03-07 17:33:49.711 objc1[6080] hello world Process returned 0 (0x0) execution time : 0.220 sPress any key to continue. |