Skip to content

Instantly share code, notes, and snippets.

@numist
Created April 9, 2013 22:36
Show Gist options
  • Save numist/5350030 to your computer and use it in GitHub Desktop.
Save numist/5350030 to your computer and use it in GitHub Desktop.
ARC for malloc!
NSMutableData *dataObj = [NSMutableData dataWithLength:length];
objc_setAssociatedObject(self, key, dataObj, OBJC_ASSOCIATION_RETAIN);
void *data = [dataObj mutableBytes];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment