Created
July 11, 2011 22:02
-
-
Save mmower/1076906 to your computer and use it in GitHub Desktop.
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
- (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