Is there a way to get the hexadecimal address of the instance object in the Xcode debug window via NSLog?
I have a collection of NSArray and NSDictionary objects, and I want to get the address of the instance, not the contents.
Trying [obj description] will tell me the content, but not the address.
source
share