Skip to content

Instantly share code, notes, and snippets.

@zwaldowski
Created May 17, 2014 18:53
Show Gist options
  • Save zwaldowski/3e8fddce64e6ece8e225 to your computer and use it in GitHub Desktop.
Save zwaldowski/3e8fddce64e6ece8e225 to your computer and use it in GitHub Desktop.
#import <Foundation/Foundation.h>
int main(int argc, char *argv[]) {
@autoreleasepool {
NSMapTable *table = [NSMapTable strongToWeakObjectsMapTable];
[table setObject:@"foo" forKey:@protocol(NSCopying)];
[table setObject:@"bar" forKey:[NSString class]];
NSLog(@"%@", table);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment