I have a CGPoint called point that is being assigned a touch:
UITouch *touch = [touches anyObject]; CGPoint point = [touch locationInView:self];
Actually, the real easiest way to log a CGPoint is:
CGPoint
NSLog(@"%@", NSStringFromCGPoint(point));
The desktop Cocoa equivalent is NSStringFromPoint().
NSStringFromPoint()