Skip to content

Instantly share code, notes, and snippets.

@ArloL
ArloL / NSObject+AssociatedObjects.h
Created April 27, 2012 02:32 — forked from xslim/NSObject+AssociatedObjects.h
Blocks support for RestKit RKClient
#import <Foundation/Foundation.h>
@interface NSObject (AMAssociatedObjects)
- (void)associateValue:(id)value withKey:(void *)key; // Retains value.
- (id)associatedValueForKey:(void *)key;
- (void)removeAssociatedValueForKey:(void *)key;
@end