class_getName
Returns the name of a class.
あるクラスの名前を返します。
class_getSuperclass
Returns the superclass of a class.
あるクラスのスーパークラスを返します。
class_isMetaClass
Returns a Boolean value that indicates whether a class object is a metaclass.
あるブール値を返します、それはあるクラスオブジェクトがメタクラスであるかどうかを指し示します。
class_getInstanceSize
Returns the size of instances of a class.
あるクラスのインスタンスのサイズを返します。
class_getInstanceVariable
Returns the
Ivar
for a specified instance variable of a given class.class_getClassVariable
Returns the
Ivar
for a specified class variable of a given class.class_addIvar
Adds a new instance variable to a class.
新しいインスタンス変数をクラスに加えます。
class_copyIvarList
Describes the instance variables declared by a class.
あるクラスによって宣言されたインスタンス変数を記述します。
class_getIvarLayout
Returns a description of the
Ivar
layout for a given class. class_setIvarLayout
Sets the
Ivar
layout for a given class. class_getWeakIvarLayout
Returns a description of the layout of weak
Ivar
s for a given class. class_setWeakIvarLayout
Sets the layout for weak
Ivar
s for a given class. class_getProperty
Returns a property with a given name of a given class.
ある与えられたクラスのある与えられた名前をもつプロパティを返します。
class_copyPropertyList
Describes the properties declared by a class.
あるクラスによって宣言されたプロパティを記述します。
class_addMethod
Adds a new method to a class with a given name and implementation.
新しいメソッドをある与えられた名前と実装をもつクラスに加えます。
class_getClassMethod
Returns a pointer to the data structure describing a given class method for a given class.
ある与えられたクラスに対するある与えられたメソッドを記述しているデータ構造体へのポインタを返します。
class_copyMethodList
Describes the instance methods implemented by a class.
あるクラスによって実装されたインスタンスメソッドを記述します。
class_replaceMethod
Replaces the implementation of a method for a given class.
ある与えられたクラスに対するあるメソッドの実装を置き換えます。
class_getMethodImplementation
Returns the function pointer that would be called if a particular message were sent to an instance of a class.
関数ポインタを返します、それはある特定のメッセージがあるクラスのあるインスタンスに送られたならば呼び出されるでしょう。
class_getMethodImplementation_stret
Returns the function pointer that would be called if a particular message were sent to an instance of a class.
関数ポインタを返します、それはある特定のメッセージがあるクラスのあるインスタンスに送られたならば呼び出されるでしょう。
class_respondsToSelector
Returns a Boolean value that indicates whether instances of a class respond to a particular selector.
あるブール値を返します、それはあるクラスのインスタンスそれらがある特定のセレクタに応答するかどうかを指し示します。
class_addProtocol
Adds a protocol to a class.
あるプロトコルをあるクラスに加えます。
class_addProperty
Adds a property to a class.
あるプロパティをあるクラスに加えます。
class_replaceProperty
Replace a property of a class.
あるクラスのあるプロパティを置き換えます。
class_conformsToProtocol
Returns a Boolean value that indicates whether a class conforms to a given protocol.
あるブール値を返します、それはあるクラスがある与えられたプロトコルに準拠するかどうかを指し示します。
class_copyProtocolList
Describes the protocols adopted by a class.
あるクラスによって採用されたプロトコルそれらを記述します。
class_getVersion
Returns the version number of a class definition.
あるクラス定義のバージョン番号を返します。
class_setVersion
Sets the version number of a class definition.
あるクラス定義のバージョン番号を設定します。
objc_getFutureClass
Used by CoreFoundation's toll-free bridging.
objc_setFutureClass
Used by CoreFoundation's toll-free bridging.