Created
February 18, 2009 03:53
-
-
Save nickjs/66173 to your computer and use it in GitHub Desktop.
This file contains 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
var dict = [CPDictionary dictionary]; | |
var frame = [[CPView alloc] initWithFrame:CGRectMakeZero()]; | |
[dict setObject:frame forKey:@"something"]; | |
console.log([[dict objectForKey:@"something"] frame]); | |
[frame setFrame:CGRectMake(100.0, 100.0, 1000.0, 1000.0)]; | |
console.log([frame frame]) | |
console.log([[dict objectForKey:@"something"] frame]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment