Function 関数

class_conformsToProtocol(_:_:)

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

Declaration 宣言

func class_conformsToProtocol(_ cls: AnyClass?, 
                            _ protocol: Protocol?) -> Bool

Parameters パラメータ

cls

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

protocol

A protocol. あるプロトコル。

Return Value 戻り値

true if cls conforms to protocol, otherwise false.

Discussion 解説

You should usually use NSObject‘s conforms(to:) method instead of this function.

See Also 参照

Working with Classes クラスを扱う