天天看點

Obejective-C基礎知識

晚上研究了下Object-C基本知識,現在記錄部分重要的類容,便于學習。

1.#import :引入命名空間。如#import <Foundat/Founation.h>

2.NSLog():用于輸出。

3。資料類型:bool,NNsTRING ,INT 等

4變量;

  代碼A

int main(Int args,const char *argv[]){

 int  i ;

for(Int i=1;i<5; i++){

NSLog(@“%d\n”,i)

return (0);

}}

代碼B

const char * words[4]={  "aa","bb","cc" ,"dd"};

int wordcount=4;

int i ;

for (int i=0;i<wordcount;i++){

nslog(@" %s     is  %d  characters long ",  words[i],strlen(words[i] ));

}

return (0):}

說明:%s:輸出的參數是字元 ;

           %d輸出的是數字;

  strlen()用于擷取字元長度

5.檔案讀取

File *wordfile=fopen( "  /temp/word.txt"," r" );

char word[ 100];

while(fgets( word,100,wordfile)){

word[ strlen(word) -1]  ='  \0' ;

nslog(@" %s is     %d     characters long ",word ,word.strlen(word)));

}

fclose( wordfile ie);

return (0);

}