Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
NSLog(@"%@", CGRectCreateDictionaryRepresentation(rect)); – Abhishek Bedi Nov 20 '12 at 10:16

5 Answers

up vote 268 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).

share|improve this answer
great but does works only with Cocoa-touch :( – Matthieu Riegler Aug 18 '12 at 19:04
With AppKit on OS X you would need to convert to an NSPoint and then call NSStringFromPoint. For example: NSStringFromPoint(NSPointFromCGPoint(point)) – Alex Aug 22 '12 at 17:56
oh ok, thx for the precision :) – Matthieu Riegler Aug 22 '12 at 21:03
1  
NSLog(@"%@", CGRectCreateDictionaryRepresentation(rect)); – Abhishek Bedi Nov 20 '12 at 10:16

There are a few functions like:

NSStringFromCGPoint  
NSStringFromCGSize  
NSStringFromCGRect  
NSStringFromCGAffineTransform  
NSStringFromUIEdgeInsets

An example:

NSLog(@"rect1: %@", NSStringFromCGRect(rect1));
share|improve this answer
Bloody awesome! Stuff like this makes you fall in love with Cocoa Touch :) – Morgan Wilde May 9 at 12:07

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)
share|improve this answer
1  
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
NSLog(@"%@", CGRectCreateDictionaryRepresentation(rect));
share|improve this answer

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

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

share|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. – Jens Ayton Jun 19 '11 at 22:11
The link is broken. Neat to hear it can be done, though. – ArtOfWarfare Nov 11 '12 at 16:45
The link is now fixed. – Jens Ayton Nov 14 '12 at 8:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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