objc_getProtocol
Returns a specified protocol.
指定されたプロトコルを返します。
objc_copyProtocolList
Returns an array of all the protocols known to the runtime.
runtimeにとって既知の全てのプロトコルからなるある配列を返します。
objc_allocateProtocol
Creates a new protocol instance.
新しいプロトコルインスタンスを作成します。
objc_registerProtocol
Registers a newly created protocol with the Objective-C runtime.
新しく作成されたプロトコルをObjective-C runtimeに登録します。
protocol_addProtocol
Adds a registered protocol to another protocol that is under construction.
ある登録済みプロトコルを、建設中の別のプロトコルに加えます。
protocol_addProperty
Adds a property to a protocol that is under construction.
あるプロトコルをある建設中のプロトコルに加えます。
protocol_getName
Returns a the name of a protocol.
あるプロトコルの名前を返します。
protocol_isEqual
Returns a Boolean value that indicates whether two protocols are equal.
あるブール値を返します、それは2つのプロトコルが等しいかどうかを指し示します。
protocol_copyMethodDescriptionList
Returns an array of method descriptions of methods meeting a given specification for a given protocol.
与えられたプロトコルに対するある与えられた仕様に合っているメソッドそれらのメソッド記述からなるある配列を返します。
protocol_getMethodDescription
Returns a method description structure for a specified method of a given protocol.
与えられたプロトコルのある指定されたメソッドに対するメソッド記述構造体を返します。
protocol_copyPropertyList
Returns an array of the properties declared by a protocol.
あるプロトコルによって宣言されるプロパティそれらからなるある配列を返します。
protocol_getProperty
Returns the specified property of a given protocol.
与えられたプロトコルのこの指定されたプロパティを返します。
protocol_copyProtocolList
Returns an array of the protocols adopted by a protocol.
あるプロトコルによって採用されたプロトコルそれらからなるある配列を返します。
protocol_conformsToProtocol
Returns a Boolean value that indicates whether one protocol conforms to another protocol.
あるブール値を返します、それは一方のプロトコルが別のプロトコルに準拠するかどうかを指し示します。