Function 関数

class_getMethodImplementation_stret

Returns the function pointer that would be called if a particular message were sent to an instance of a class. 関数ポインタを返します、それはある特定のメッセージがあるクラスのあるインスタンスに送られたならば呼び出されるでしょう。

Declaration 宣言

IMP class_getMethodImplementation_stret(Class cls, SEL name);

Parameters パラメータ

cls

The class you want to inspect. あなたが調査したいクラス。

name

A selector. セレクタ。

Return Value 戻り値

The function pointer that would be called if [object name] were called with an instance of the class, or NULL if cls is Nil.

See Also 参照

Working with Classes クラスを扱う