Created
February 12, 2013 03:11
-
-
Save WorldDownTown/4759964 to your computer and use it in GitHub Desktop.
objc_setAssociatedObject
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void objc_setAssociatedObject(id object, const void *key, id value, objc_AssociationPolicy policy) | |
// id object: プロパティを持たせたいオブジェクト | |
// void *key: プロパティのアドレス (static で宣言した不変なローカルな静的変数を指定する) | |
// id value: 保持させるのオブジェクト | |
// objc_AssociationPolicy policy: 関連付けの方法 (後述) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment