Skip to content

Instantly share code, notes, and snippets.

@nickjs
Created February 18, 2009 03:53
Show Gist options
  • Save nickjs/66173 to your computer and use it in GitHub Desktop.
Save nickjs/66173 to your computer and use it in GitHub Desktop.
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