- iphone where are variables allocated in heap
- NSString *nombre = [[NSString alloc] initWithString:@"nombreName"];
- UIView *someObject = [[UIView alloc] init];
- (gdb) po someObject
- <UIView: 0x9304090; frame = (0 0; 0 0); layer = <CALayer: 0x4b1b730>>
- (gdb) p someObject
- $2 = (UIView *) 0x9304090
- (gdb) p (int) someObject
- $3 = 154157200
- NSLog(@"nombre address is %x", nombre);