How would I store CGRect objects in a NSMutableArray, and then later retrieve them?
CGRect rect = CGRectMake( 5, 5, 40, 30 ); NSString* rectAsString = NSStringFromCGRect( rect ); CGRect original = CGRectFromString( rectAsString );