Function 関数

class_respondsToSelector

Returns a Boolean value that indicates whether instances of a class respond to a particular selector. あるブール値を返します、それはあるクラスのインスタンスそれらがある特定のセレクタに応答するかどうかを指し示します。

Declaration 宣言

BOOL class_respondsToSelector(Class cls, SEL sel);

Parameters パラメータ

cls

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

sel

A selector. セレクタ。

Return Value 戻り値

YES if instances of the class respond to the selector, otherwise NO.

Discussion 解説

You should usually use NSObject's respondsToSelector: or instancesRespondToSelector: methods instead of this function.

See Also 参照

Working with Classes クラスを扱う