Created
March 25, 2013 02:21
-
-
Save hlxwell/5234530 to your computer and use it in GitHub Desktop.
Store CGxxxx into Array or Dictionary
This file contains hidden or 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
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