這個(gè)算是讀書(shū)筆記吧,之后會(huì)把在書(shū)中看到的一些知識(shí)點(diǎn)什么的記錄上去,督促我學(xué)習(xí)(畢竟還有半年多就要入職了,也不能什么都不會(huì)= =),順便養(yǎng)成寫(xiě)博客的好習(xí)慣= =(如果可以的話~)
正文:)
.c c源文件 .cc/.cpp c++源文件 .m objective-c 源文件 .mm objective-c++源文件 .o 編譯好的objective-c文件
hello,world程序(系統(tǒng)直接給寫(xiě)好的那個(gè))
#import <Foundation/Foundation.h>
int main(int argc, const char * argv[]) {
@autoreleasepool {
// insert code here...
NSLog(@"Hello, World!");
}
return 0;
}
然后看了看書(shū),告訴我是簡(jiǎn)述性的一章,emmmmm,這章就到此結(jié)束啦~