Function 関数

class_conformsToProtocol

Returns a Boolean value that indicates whether a class conforms to a given protocol. あるブール値を返します、それはあるクラスがある与えられたプロトコルに準拠するかどうかを指し示します。

Declaration 宣言

BOOL class_conformsToProtocol(Class cls, Protocol *protocol);

Parameters パラメータ

cls

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

protocol

A protocol. あるプロトコル。

Return Value 戻り値

YES if cls conforms to protocol, otherwise NO.

Discussion 解説

You should usually use NSObject‘s conformsToProtocol: method instead of this function.

See Also 参照

Working with Classes クラスを扱う