Skip to content

Instantly share code, notes, and snippets.

@mmower
Created July 11, 2011 22:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmower/1076906 to your computer and use it in GitHub Desktop.
Save mmower/1076906 to your computer and use it in GitHub Desktop.
- (IBAction)debugBindingsAction:(id)sender {
NSLog( @" network: %p", _network );
NSLog( @" members: %p", [_network members] );
id object = [[_networkController selectedObjects] objectAtIndex:0];
NSLog( @"selected object: %p", object );
id members = [object valueForKey:@"members"];
NSLog( @" real: %p", members );
}
network: 0x2000b8860
members: 0x2008f82e0
selected object: 0x2000b8860
real: 0x0
Huh?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment