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

I have a CGPoint called point that is being assigned a touch:

UITouch *touch = [touches anyObject];

CGPoint point = [touch locationInView:self];

I want to get the x coordinate value into my console log:

NSLog(@"x: %s", point.x);

When I use this, log output for this is:

x: (null)

I have verified that point is not null when this is called using the debugger and variable watch.

Any help appreciated,

Thanks // :)

share|improve this question

5 Answers

up vote 105 down vote accepted

Actually, the real easiest way to log a CGPoint is:

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

The desktop Cocoa equivalent is NSStringFromPoint().

share|improve this answer
This is even better. The first answer is the easiest and lightest weight way. But this gets me both x and y from the CGPoint in one set. Nice :) Great tool :) – Spanky Sep 25 '09 at 18:29
Since StackOverflow saw fit to reintroduce this question in my RSS feed, I may as well pimp my general solution: jens.ayton.se/blag/almost-elegant-cave-man-debugging which allows you to go JA_DUMP(point); and get “point = { 43, 96 }” logged without having to worry about format codes. – Jens Ayton Sep 6 '10 at 20:06
How do I use your lib since it compiles on I386 but not on ARM? I mean, how can I work on iOS projects using it? – Yar Nov 22 '10 at 18:00
First, you’d need to build the FindAlignment.c file as an iOS app and run it on a device (not simulator). Then, copy the result into a new #elif block before the #else at line 172 in JAValueToString.m. If this doesn’t work, additional debugging will be required. I can’t do it since I’m not in the iOS programme. – Jens Ayton Nov 23 '10 at 7:52
Also worth noting that NSStringFromCGRect() exists too. – Daniel Skinner Dec 8 '12 at 13:10
show 1 more comment

point.x is a floating point number, so you should use:

NSLog(@"x: %f", point.x);
share|improve this answer
1  
Thank you mr anonymous downvoter. What's not correct about this answer? The question was: I want to get the x coordinate value into my console log – Philippe Leybaert Sep 25 '09 at 12:12
Awesome, that works! Thanks :) – Spanky Sep 25 '09 at 18:23
2  
anonymous upvote. – Yar May 25 '11 at 17:11

The simplest way to log a CGPoint value is to use the NSValue class, since it will give you all the relevant values formatted nicely for the console. It's done like so:

NSLog(@"myPoint = %@", [NSValue valueWithCGPoint:myPoint]);

You can also use the +valueWithCGRect and +valueWithCGSize methods of NSValue when you're trying to log, say, the frame (CGRect) or size (CGSize) properties of a UIView.

share|improve this answer
Great answer! Thanks :) – Spanky Sep 25 '09 at 18:25

NSLog(@"point x,y: %f,%f", point.x, point.y);

share|improve this answer

point.x is a floating point number so you should code like this:

NSLog(@"%@",[NSString StringWithFormat:@"%f",point.x]);
share|improve this answer
3  
.... or NSLog(@"%f", point.x) – Dave DeLong Sep 6 '10 at 15:55
If u want to String value means u just use this!! – Suresh Sep 7 '10 at 6:38
4  
You're doing an unnecessary format string within a format string. Philippe's and Ahruman's approaches are much simpler and they achieve the exact same results. – Brad Larson Oct 29 '10 at 17:27

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.