Skip to content

Instantly share code, notes, and snippets.

@hlxwell
Created March 25, 2013 02:21
Show Gist options
  • Save hlxwell/5234530 to your computer and use it in GitHub Desktop.
Save hlxwell/5234530 to your computer and use it in GitHub Desktop.
Store CGxxxx into Array or Dictionary
NSMutableArray* array = [NSMutableArray mutableArray];
[array addObject:[NSValue valueWithCGRect:CGRectMake(0,0,10,10)]];
CGRect someRect = [[array objectAtIndex:0] CGRectValue];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment