up vote 44 down vote favorite
14
share [g+] share [fb]

I want to be able to debug C structures without having to explicitly type every property that they consist of.

i.e. I want to be able to do something like this:

CGPoint cgPoint = CGPointMake(0,0);
NSLog(@"%@",cgPoint);

Obviously the '%@' won't work, hence the question.

link|improve this question

feedback

4 Answers

up vote 78 down vote accepted

You can try this:

NSLog(@"%@", NSStringFromCGPoint(cgPoint));

There are a number of functions provided by UIKit that convert the various CG structs into NSStrings. The reason it doesn't work is because %@ signifies an object. A CGPoint is a C struct (and so are CGRects and CGSizes).

link|improve this answer
feedback

There are a few functions like:

NSStringFromCGPoint  
NSStringFromCGSize  
NSStringFromCGRect  
NSStringFromCGAffineTransform  
NSStringFromUIEdgeInsets

An example:

NSLog(@"rect1: %@", NSStringFromCGRect(rect1));
link|improve this answer
feedback

I use the following macro to help me out with NSRect:

#define LogRect(RECT) NSLog(@"%s: (%0.0f, %0.0f) %0.0f x %0.0f",
    #RECT, RECT.origin.x, RECT.origin.y, RECT.size.width, RECT.size.height)

You could do something similar for CGPoint:

@define LogCGPoint(POINT) NSLog(@"%s: (%0.0f, %0.0f)",
    #POINT POINT.x, POINT.y);

Using it as follows:

LogCGPoint(cgPoint);

Would produce the following:

cgPoint: (100, 200)
link|improve this answer
Why not just use the built in UIKit String Conversion Functions? – MattDiPasquale Oct 20 '11 at 17:58
I do now. Those are exatly the functions that Alex and steve posted in their answers. – e.James Oct 20 '11 at 19:34
feedback

Since Stack Overflow’s broken RSS just resurrected this question for me, here’s my almost-general solution: https://github.com/Ahruman/JAValueToString

This lets you write JA_DUMP(cgPoint) and get cgPoint = {0, 0} logged.

link|improve this answer
Cool! Heads up for your work! P.S. SO resurrected the question probably because I edited an answer ... – marzapower Jun 13 '11 at 20:18
I did that and I got compile error. Sometimes address of property expression required or something – Jim Thio Jun 19 '11 at 10:58
@Jim Thio: the macro is set up in such a way that the object being inspected must be an lvalue. (I can’t remember why; something about not being able to handle C strings properly otherwise.) In short, assign your property to a temporary variable, then call JA_DUMP on that. – Ahruman Jun 19 '11 at 22:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.