在Linux上如何學習Objective-C

來源:互聯網
上載者:User

標籤:object-c   oc學習   linux學習oc   

如果想學習OC卻苦於沒有MAC電腦的同學,可以試著以下方法來解決

我們利用GNUstep學習Objective-C


第一步:安裝需要的軟體和編譯環境


sudo apt-get install gnustepsudo apt-get install gnustep-devel

第二步:寫第一個OC代碼

#import <Foundation/Foundation.h>int main (int argc, const char * argv[]){        NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];        NSLog (@"hello world");        [pool drain];        return 0;}/*PS::需要注意一點:Objective-C2.0 裡 將 NSAutoreleasePool *pool = [NSAutoreleasePool alloc] init]; 和 [pool drain]; 換成了 “@autoreleasepool { }" , 如果只是想在ubuntu裡學習一下Objective-C編程, 可以不寫NSAutoreleasePool、 [pool drain];這兩行代碼,也不報錯!*/
第三步:編譯gcc `gnustep-config --objc-flags` -lgnustep-base hello.m -o hello

如果編譯過程中出現以下錯誤

gcc: error trying to exec ‘cc1obj‘: execvp: No such file or directory


運行以下命令

sudo apt-get install gobjc

再次編譯後運行

./hello

Executing the program will result in output similar to the following:

2009-09-15 10:48:39.772 prog1[12906] hello world


小技巧:

    每次編譯總是要寫一大串 

gcc `gnustep-config --objc-flags` -lgnustep-base .m源檔案 -o 產生的可執行檔

    這裡簡化一下,寫一個makefile,代碼如下:

    

app:$(s)        gcc `gnustep-config --objc-flags` $(s) -o app -lgnustep-base -lobjc clean:         rm *.d         rm app


每次執行都需要 

    

make s=.m源檔案名稱 //運行:./app//再次編譯之前需要make clean


本文出自 “開心編程_永無止境” 部落格,請務必保留此出處http://happyliu.blog.51cto.com/501986/1621679

在Linux上如何學習Objective-C

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.