views:

71

answers:

1

I am trying to find out how to print instance id for known objects like NSString and NSNumber. When i try using it on any of those objects i just get content not the instance id.

Help will be greatly appreciated

Thanks

+6  A: 
NSLog(@"Pointer address: %p", myObject);
Ole Begemann