Windows環境下搭建Objective-C開發環境

來源:互聯網
上載者:User

1、安裝編譯器   

Objective-C的編譯器有很多,其中LLVM屬於從GCC發展出來的,主要使用在蘋果的平台中,GNU可以使用GnuStep,網址是http://wwwmain.gnustep.org/,從這裡可以下載Windows版本的gcc編譯器,配合codeblocks可以編譯調試object c程式。
   

進入下載頁面,下載上面3個軟體包,安裝,例如安裝到D:\GNUstep,

2、安裝CodeBlocks IDE環境

:http://www.codeblocks.org/

3、配置編譯器

安裝好codeblocks之後,進入Settings->Compiler and debugger...,選擇GNU GCC Compiler編譯器,複製重新命名為“GNUstep MinGW Compiler“配置

  

編譯其他選項錄入:-fconstant-string-class=NSConstantString -std=c99

同時指定搜尋目錄:
》編譯器的搜尋目錄是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

設定編譯器、連接器的搜尋目錄

4、配置文法、檔案類型,關鍵字等

添加檔案類型支援

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

文法高亮中,加入*.m副檔名

5、代碼測試

建立一個工程,修改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 s
Press any key to continue.

 

文章來源:http://blog.csdn.net/wxw45601/article/details/7484056

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.