Function 関数

protocol_getProperty

Returns the specified property of a given protocol. 与えられたプロトコルのこの指定されたプロパティを返します。

Declaration 宣言

objc_property_t protocol_getProperty(Protocol *proto, const char *name, BOOL isRequiredProperty, BOOL isInstanceProperty);

Parameters パラメータ

proto

A protocol. あるプロトコル。

name

The name of a property.

isRequiredProperty

A Boolean value that indicates whether name is a required property.

isInstanceProperty

A Boolean value that indicates whether name is an instance property.

Return Value 戻り値

The property specified by name, isRequiredProperty, and isInstanceProperty for proto, or NULL if none of proto’s properties meets the specification.

See Also 参照

Working with Protocols プロトコルを扱う