Function 関数

protocol_conformsToProtocol

Returns a Boolean value that indicates whether one protocol conforms to another protocol. あるブール値を返します、それは一方のプロトコルが別のプロトコルに準拠するかどうかを指し示します。

Declaration 宣言

BOOL protocol_conformsToProtocol(Protocol *proto, Protocol *other);

Parameters パラメータ

proto

A protocol. あるプロトコル。

other

A protocol. あるプロトコル。

Return Value 戻り値

YES if proto conforms to other, otherwise NO.

Discussion 解説

One protocol can incorporate other protocols using the same syntax that classes use to adopt a protocol:


@protocol ProtocolName < protocol list >

All the protocols listed between angle brackets are considered part of the ProtocolName protocol.

See Also 参照

Working with Protocols プロトコルを扱う