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 // :)
Actually, the real easiest way to log a CGPoint
is:
NSLog(@"%@", NSStringFromCGPoint(point));
The desktop Cocoa equivalent is NSStringFromPoint()
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With