- Xcode 4, using breakpoints to log or po an object
- double currentZoom = [self getZoomScale];
- currentZoom: @(double)currentZoom@ // this didn't work
- currentZoom: @(double)[self getZoomScale]@ // also didn't work
- NSLog(@"%f", currentZoom);
- p currentZoom
- NSNumber currentZoomNumber = [NSNumber numberWithDouble:currentZoom];
- po currentZoomNumber
- po objectName
- print (int) intNum
- print (float) floatNum