Learn the distinguishing language features of OC They differ substantially in their han...
Learn the distinguishing language features of OC They differ substantially in their han...
Familiarize yourself with OC syntax. Write some classes and properties from scratch In ...
Master how to write and call methods in OC. Build a functional game. 1.Method Definitio...
1~4:Terminal中輸入命令subl打開Sublime Text5:Sublime Text安裝Swift包6:配置Git的文本編輯為Sublime Text 1.下載...
1.OC特性 (1)OC方法:對(duì)象方法(-),類方法(+) 1.對(duì)象方法:-(returnType)initWithString:(NSString *)string; 2....
6.OC 手動(dòng)內(nèi)存管理 OC 內(nèi)存管理原則: 只要使用 alloc, new, copy, mutableCopy, retain 開頭的方法將一個(gè)對(duì)象的地址賦給一個(gè)指針變量...
11.self 和 super self代表一個(gè)指針,super是一個(gè)編譯器指示符,self 和 super 都指向的都是相同的消息接收者,super通常代表父類,self通...
15. 數(shù)據(jù)持久化 數(shù)據(jù)持久化方式: plist:屬性列表plist 文件的常見操作 NSUserDefaults (用戶偏好設(shè)置)基本操作 歸檔和解檔基本操作 在解檔的時(shí)候...
extern :可置于變量或者函數(shù)前,以表示變量或者函數(shù)的定義在別的文件中。提示編譯器遇到此變量或函數(shù)時(shí),在其它模塊中尋找其定義,另外,extern也可用來進(jìn)行鏈接指定。 i...
%@:object's description %d :short,int,---- decimal(十進(jìn)制)(整數(shù))%ld: long%lu:unsigned long %...
??????
[006] SQLiteMay you do good and not evil.May you find forgiveness for yourself and forgive others.M...
May you do good and not evil.May you find forgiveness for yourself and forgive others.M...
我望著你的一雙眼睛 在我是個(gè)孩子而且很好的時(shí)候。 你的雙手撫愛著我 給了我一個(gè)甜蜜的吻。 (鐘表走著同一個(gè)節(jié)拍, 夜晚綴著同一群星星。) 我的心開放了 猶如一朵花在天空下面,...
????????
Chapter13~26:OC Basic - <Objective-C Programming>Another attribute that you will see shortly is copy. Practically speaking, whenever you...
Another attribute that you will see shortly is copy. Practically speaking, whenever you...
????????
NSTimer使用事項(xiàng)1.將NSTimer加入NSRunLoopCommonModes避免與主Runloop競(jìng)爭(zhēng) 兩個(gè)Runloop: NSDefaultRunLoopMode: 用于UI的渲染 ...
1.將NSTimer加入NSRunLoopCommonModes避免與主Runloop競(jìng)爭(zhēng) 兩個(gè)Runloop: NSDefaultRunLoopMode: 用于UI的渲染 ...
好棒
UIAlertView 以及 UIAlertController1.兩者主要區(qū)別 UIAlertView可以在任意class中調(diào)用[alertView show]; UIAlertController只能在ViewContrller中調(diào)用...