Function 関数

class_respondsToSelector(_:_:)

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

Declaration 宣言

func class_respondsToSelector(_ cls: AnyClass?, 
                            _ sel: Selector) -> Bool

Parameters パラメータ

cls

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

sel

A selector. セレクタ。

Return Value 戻り値

true if instances of the class respond to the selector, otherwise false.

Discussion 解説

You should usually use NSObject's responds(to:) or instancesRespond(to:) methods instead of this function.

See Also 参照

Working with Classes クラスを扱う