objc_getAssociatedObject
Returns the value associated with a given object for a given key.
与えられたキーに対してある与えられたオブジェクトと結び付けられた値を返します。
objc_removeAssociatedObjects
Removes all associations for a given object.
与えられたオブジェクトに対して全ての関連を取り除きます。
Availability
Technology
void objc_setAssociatedObject(id object, const void *key, id value, objc_AssociationPolicy
policy);
object
The source object for the association. この関連に対するソースオブジェクト。
key
The key for the association. この関連に対するキー。
value
The value to associate with the key key
for object
. Pass nil
to clear an existing association.
policy
The policy for the association.
この関連に対するポリシー。
For possible values, see objc
.
objc_getAssociatedObject
objc_removeAssociatedObjects