Please enable JavaScript.
Coggle requires JavaScript to display documents.
Objective C (常用型別 (NSString (轉C基礎型別 (doubleValue, floatValue, integerValue…
Objective C
-
語法
-
物件導向
Protocol
-
-
-
Informal protocol
-
protocol className (category) <protocols>
類別套用
protocol className : superClass <protocols>
-
-
-
-
-
-
-
-
-
-
-
-
Block
-
-
取代傳統delegate和callback
qsort(^(int a,int b){return 0;})
-
定義,int(^add)(int,int)=^(int a,int b){return a+b;}
-
-
-
-
-
-
-
-
-
-
-
-
-