I'm trying to figure out how to use the log or debug commands in adding actions to a breakpoint. I can't seem to figure it out. For something like this:
double currentZoom = [self getZoomScale];
How do I print out the currentZoom? I tried using log as my action, and then doing
currentZoom: @(double)currentZoom@ // this didn't work
currentZoom: @(double)[self getZoomScale]@ // also didn't work
Can someone help me out with this and any other info I may need to log information with breakpoints?
And also a simple example for po an object. Does po always po the description (as in you have to have overridden the description method? Thanks.
.
NSLog(@"%@",[self getZoomScale]);– Urban Seifert Jan 9 at 17:49