天天看點

Objective-C 中的方法的調用

oc語言中采用特定的語言調用類或者執行個體(對象)的方法稱為發送消息或者方法調用。

oc中方法的調用有兩種:

  • [類名或對象名 方法名];

[ClassOrInstance method];

[ClassOrInstance method:arg1];

[ClassOrInstance method1:arg2 method2:arg2];

[[ClassOrInstance method:arg1] otherMethod];       //嵌套發送消息

  • 對象名.方法名;    (點文法)

繼續閱讀