I'd like to view the value of an NSUInteger at any given time. I assign the value below:
NSUInteger test = -1;
Then try to view it in the debugger:
(gdb) po test
Cannot access memory at address 0xffffffff
(gdb) p test
$1 = 4294967295
Current language: auto; currently objective-c
Far as I know, it is a value type. Where is -1?